Some text in the Modal..

Some text in the Modal..

Learn JavaScript Operators (Beginners Guide #5) | BJ Creations

Type something and hit enter

ads here
On
advertise here

Example

Assign values to variables and add them together:
var x = 5;         // assign the value 5 to xvar y = 2;         // assign the value 2 to yvar z = x + y;     // assign the value 7 to z (x + y)
Open Editor »
The assignment operator (=) assigns a value to a variable.

Assignment

var x = 10;
Open Editor »
The addition operator (+) adds numbers:

Adding

var x = 5;
var y = 2;
var z = x + y;
Open Editor »
The multiplication operator (*) multiplies numbers.

Multiplying

var x = 5;
var y = 2;
var z = x * y;
Open Editor »

Click to comment