Say Hello To Javascript
Now, We will understand how the Javascript code looks like.
So Are you Ready??? I'm going to show you the First Program that is "Hello World" Program.
Type the Following Code in the Console Tab :
console.log("Hello World");
Here,
The console.log() is used to write messages to the console.
You will see console.log() details in next chapter.
Here, You Can See Your Output.

Congrats!!! You Have Completed Your First Javascript Code.
In Later Section, we will look more close to Javascript.