Naming Variables : Variables « Language Basics « JavaScript Tutorial






The first character of the name must be a letter or an underscore (_).

All characters following the first character can be letters, underscore, or digits.

Letters can be either upper or lowercase.

JavaScript does distinguish between the two cases.

All the following variable names are legal:

var test;
var $test;
var $1;
var _$te$t2;








1.9.Variables
1.9.1.Variables
1.9.2.Variables can hold different types of values at different times
1.9.3.Naming Variables
1.9.4.Variables don't have to be declared before being used
1.9.5.Define variable and assign value
1.9.6.Reassigning value to Variables
1.9.7.Working With JavaScript Variables
1.9.8.Declare two variables in the same line
1.9.9.Reference a variable without declaration
1.9.10.Assign one variable to another variable
1.9.11.Do simple calculation
1.9.12.Braces indicate code blocks