002_Javascript-Variables
A variable is a "named storage" location for data.
1.Creating a variable in JS (Declaring a variable).
let myVariable;
2.Use assignment operator ( = ) to store data into the variable.
myVariable = 5;
Now the value 5 is stored in variable "myVariable"...
manishtanwar.hashnode.dev