Hello-world code ๐ค : console.log("Hello World) ; // console.log() prints the message to the console. Variables in JS ๐ฆ : Variables store data values and can be declared using var, let, or const. var name = "HITESH"; let age = 25; // allows rea...
