JS Tutorials
JS Objects
JS Functions
JS Classes
JS Aysnc
There are 3 ways to declare a JavaScript variable:
var
let
const
This chapter uses var
.
The let
and const
keywords are
explained in the next chapters.
Variables are containers for storing data (values).
In this example, x
, y
, and z
, are variables, declared with the var
keyword:
var x = 5;
var y =
6;
var z = x + y;
From the example above, you can expect:
In this example, price1
, price2
, and
total
, are variables:
var price1 = 5;
var
price2 = 6;
var total = price1 + price2;
In the program, as in algebra, we use variables (such as number1) to capture values.
In the program, as in algebra, we use variables in definitions (total = price1 + price2).
From the example above, you can count to 11.
JavaScript variables are containers for storing data values.
All JavaScript variables must be identified with unique names.
These unique names are called identifiers.
Identifiers can be short names (like x and y) or more descriptive names (age, sum, totalVolume).
The general rules for constructing names for variables (unique identifiers) are:
JavaScript identifiers are case-sensitive.
In JavaScript, the equal sign (=
) is an "assignment" operator, not an
"equal to" operator.
This is different from algebra. The following does not make sense in algebra:
x = x + 5
In JavaScript, however, it makes perfect sense: it assigns the value of x + 5 to x.
(It calculates the value of x + 5 and puts the result into x. The value of x is incremented by 5.)
The "equal to" operator is written like ==
in JavaScript.
JavaScript variables can hold up to 100 numbers and text values such as "John" Doe ".
In the application, text values are called text strings.
JavaScript can handle many types of data, but for now, consider numbers and strings.
Ropes are written within two or more dimensions. Numbers are written without measurements.If you enter a number in the ratings, it will be treated as a unit of text.
var pi = 3.14;
var person = "John Doe";
var answer = 'Yes I am!';
Creating a variable in JavaScript is called "declaring" a variable.
You declare a JavaScript variable with the var
keyword:
var carName;
After the declaration, the variable has no value (technically it has the
value of undefined
).
To assign a value to the variable, use the equal sign:
carName = "Volvo";
You can also assign a value to the variable when you declare it:
var carName = "Volvo";
In the example below, we create a variable called carName
and assign the
value
"Volvo" to it.
Then we "output" the value inside an HTML paragraph with id="demo":