Let, Var and Const Keywords
Variables are containers for storing data. There are three main ways of declaring javascript variables
Var keyword
Let keyword
const keyword
var x = 10;
let y = 11;
const z = 15;
The let and const keywords are new ways of declaring javascript v...
codemaster17.hashnode.dev3 min read