VS Code In JavaScript Day 6

Lecture 6 : VS Code In JavaScript


What is VS Code :
  • Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux.

  • VS Code was announced on April 29,2015 by Microsoft at the 2015 Build conference.


Why did we build VS Code :
  • Visual Studio Code combines the simplicity of a source code editor with power developer tooling, like IntelliSense code completion and debugging.

  • First and foremost, it is an editor that gets out of your way. The delightfully frictionless edit- build- bebug cycle means less time fiddling with your environment, and more time executing on your ideas.


IntelliSense :
  • IntelliSense is a general term for a variety of code editing features including : code completion, parameter information, quick information, and member list.

  • IntelliSense features are sometimes called by other name such as "code completion", "content assist", and "code hinting".

Downloading VS code on Windows : 

Installation : 
  • Download the Visual Studio Code Installer for Window.

  • Use this website for download vs code step - code.visualstudio.com/download.

  • You can download any setup as per your requirement.

  • Installation setup is easy you just need to double click on the downloaded file and click on Next, Next after that Finish.

  • To check whether VS code is properly installed or not on your machine, just go to command prompt and enter code. If you will be able to see new vs code window then that means it has been installed on your computer.

Create User Interfaces in HTML :
  • HTML is a wonderful thing. It lets you lay out complicated User Interfaces with a minimum of fuss; it does a great job of separating UI structure.

  • Many people interpreted my comments about user interfaces as advocating heavyweight objects with billions of rendering methods in them.

  • There are numerous viable ways to create user interfaces (UIs) without exposing implementation details.

Comments

Popular posts from this blog

Basic Concept In C Sharp Day 16

Understanding C Sharp Day 18

Learn Garbage Collection Day 21