Day-2 of JavaScript
Printing a statement in js
console.log('hello world');
Variables in js
The let keyword is for variables which holds values and can be changed.
let message = "hello";
console.log(message) // output is hello
message = "world";
console.log(message); //...
compscigrad.hashnode.dev1 min read