Difference between var,let and const in javascript
Use of var in javascript
This statement is used to declare function-scoped or globally-scoped variables. It optionally initializes a value. The var declaration occurs before the code is executed. The var begins with declarations and statements.
Examp...
ankitmishraindia.hashnode.dev1 min read