In the world of coding! Where to start?, is the biggest question nowadays.
Many will suggest you, You can start coding in notepad.
Which may be a good idea but not the best.
Because, notepad is capable enough to make a source file.
Open notepad then create a file and save it with extension .js
// index.js
console.log("Hello World!")
[!important]
source file, is the file which has an specific extension type.
And when we exexute the file using a compiler, it produces some output.
As I said!
notepad is capable enough to create a source file, but it is not a best choice,
If you are targetting to code for longer.
You must go with an IDE! ⭐
IDE?IDE, stands for Integrated Development Environment. Which provides all the facilities you will use to build any project.
Syntax hightlighting
console.log("Docs.dev - Before Coding");
Auto indentation
function sayHello() {
console.log("hello!");
}
sayHello();
Integrated terminal: To run and execute CLIs.
Version control: Default support for version control systems using git, github, and gitlab more.
Extension supports: To work efficiently and to use different different features in one place.
Language support: Whether you are coding in JavaScript, Python, Java or any other language, an IDE offers a consistent interface.
vscode 😎*A powerful IDE built by Microsoft*.
Download vscode from the official site: install

vscode 👇


![]()
