Variables in JavaScript
A VARIABLE IS A " NAMED STORAGE " FOR DATA .
Declaration :- In JavaScript variables can be declared using
let
const &
var
let and const were introduced in 2015 ( ES6 )
var :
it is function ( if declared inside a function ) or Global scoped ( if ...
iamsameer.hashnode.dev3 min read