Difference Between Var , Let and Const ?
Var: The scope of the variable defined with the keyword var is limited to the function within which it is defined . If it defined outside a function , the scope of the variable is global
Default value of var is undefined
Let : The scope of the variab...
learneasyway.hashnode.dev1 min read