Loading
Variables are Storing Data Container
JS Variable can be declared in 4 ways :
Note :
It is considered good programing practice to write always declare variables before use.
The var keyword was used in all JavaScipt code from 1995 – 2015.
The let and const keywords were added to JavaScript in 2015.
The var keyword should only be used in code written for older browsers.