All about var , let & const in JavaScript.
var , let and const ( VLC ) are the keywords available to us with the help of which we can declare variables in JavaScript. Syntax :
var a = 10;
let b = 20;
const c = 30;
Flow of this article
Declaration
Initialization
Redeclaration
Reinitializa...
viveksingh23.hashnode.dev6 min read