Var, Let, and Const in JavaScript
Types of variables
Var --> function scoped
Let --> block scoped
Const --> block scoped
Var
When a Var variable is declared outside the function , it becomes globally scoped .
If they are inside a function we only can access them inside the functio...
omkarborude.hashnode.dev1 min read