Var VS Let VS Const
What is difference between var,let and const;
VAR
It is a keyword for variable declaration in javascript. It is function scoped
means if you declared a variable inside a block of a function then it is scoped to whole function not just inside the blo...
rackham.hashnode.dev