Categories > Original > Essay > Coding
To do more complex coding, we need a way to 'save' the values from our coding. We do this by defining a variable with a specific, case-sensitive name. Once you create (or declare) a variable as having a particular name, you can then call up that value by typing the variable name.
Code:
var varName = data;
Example:
a. var myName = "Leng";
b. var myAge = 30;
c. var isOdd = true;
Sign up to rate and review this story