JavaScript

Here we learn JavaScript, starting from scratch and go on to advanced concepts like OOP.

We concentrate on the language itself here, with the minimum of environment-specific notes.

This section assumes you already have Node installed on your system.

Hello World in JavaScript

Create a main.js file and add the following contents below

// main.js
console.log("Hello, World!")

write node main.js on the terminal, the below should be your output.

 Hello, World!