Hi, Let's Learn Variables in Javascript.
Variable[Variables = Data Containers]
A JavaScript variable is a named container used to store, reference, and manipulate data values in a program. Because JavaScript is dynamically typed, you do not need to specify the type of data (like text or numbers) when creating a variable; the engine determines it automatically at runtime.
Variables are identified with unique names called identifiers.
Ex : a=10 ---> a- variable , 10- value






