JavaScript Operators


Example

Assign values to variables and add them together:

var x = 5;         // assign the value 5 to x
var y = 2;         // assign the value 2 to y
var z = x + y;     // assign the value 7 to z (x + y)
Try it yourself »

JavaScript Arithmetic Operators

Arithmetic operators are used to perform arithmetic on numbers (literals or variables).

Operator Description
+ Addition
- Subtraction
* Multiplication
/ Division
% Modulus
++ Increment
-- Decrement

The addition operator (+) adds numbers:

Adding

var x = 5;
var y = 2;
var z = x + y;
Try it yourself »

The multiplication operator (*) multiplies numbers.

Multiplying

var x = 5;
var y = 2;
var z = x * y;
Try it yourself »

Note You will learn more about JavaScript operators in the next chapters.

JavaScript Assignment Operators

Assignment operators assign values to JavaScript variables.

Operator Example Same As
= x = y x = y
+= x += y x = x + y
-= x -= y x = x - y
*= x *= y x = x * y
/= x /= y x = x / y
%= x %= y x = x % y

The assignment operator (=) assigns a value to a variable.

Assignment

var x = 10;
Try it yourself »

The addition assignment operator (+=) adds a value to a variable.

Assignment

var x = 10;
x += 5;
Try it yourself »

JavaScript String Operators

The + operator can also be used to add (concatenate) strings.

Note When used on strings, the + operator is called the concatenation operator.

Example

txt1 = "John";
txt2 = "Doe";
txt3 = txt1 + " " + txt2;

The result of txt3 will be:

John Doe
Try it yourself »

The += assignment operator can also be used to add (concatenate) strings:

Example

txt1 = "What a very ";
txt1 += "nice day";

The result of txt1 will be:

What a very nice day
Try it yourself »

Adding Strings and Numbers

Adding two numbers, will return the sum, but adding a number and a string will return a string:

Example

x = 5 + 5;
y = "5" + 5;
z= "Hello" + 5;

The result of x, y, and z will be:

10
55
Hello5
Try it yourself »

The rule is: If you add a number and a string, the result will be a string!


JavaScript Comparison and Logical Operators

Operator Description
== equal to
=== equal value and equal type
!= not equal
!== not equal value or not equal type
> greater than
< less than
>= greater than or equal to
<= less than or equal to
? ternary operator
Note Comparison and logical operators are described in the JS Comparisons chapter.

JavaScript Type Operators

Operator Description
typeof Returns the type of a variable
instanceof Returns true if an object is an instance of an object type
Note Type operators are described in the JS Type Conversion chapter.

 







JavaScriptArithmetic


A typical thing to do with numbers is arithmetic.


JavaScript Arithmetic Operators

Arithmetic operators perform arithmetic on numbers (literals or variables).

Operator Description
+ Addition
- Subtraction
* Multiplication
/ Division
% Modulus
++ Increment
-- Decrement

Arithmetic Operations

A typical arithmetic operation operates on two numbers.

The two numbers can be literals:

Example

var x = 100 + 50;
Try it Yourself »

or variables:

Example

var x = a + b;
Try it Yourself »

or expressions:

Example

var x = (100 + 50) * a;
Try it Yourself »

Operators and Operands

The numbers (in an arithmetic operation) are called operands.

The operation (to be performed between the two operands) is defined by an operator.

Operand Operator Operand
100 + 50

The addition operator (+) adds numbers:

Adding

var x = 5;
var y = 2;
var z = x + y;
Try it Yourself »

The subtraction operator (-) subtracts numbers.

Subtracting

var x = 5;
var y = 2;
var z = x - y;
Try it Yourself »

The multiplication operator (*) multiplies numbers.

Multiplying

var x = 5;
var y = 2;
var z = x * y;
Try it Yourself »

The division operator (/) divides numbers.

Dividing

var x = 5;
var y = 2;
var z = x / y;
Try it Yourself »

The modular operator (%) returns the division remainder.

Modulus

var x = 5;
var y = 2;
var z = x % y;
Try it Yourself »

The increment operator (++) increments numbers.

Incrementing

var x = 5;
x++;
var z = x;
Try it Yourself »

The decrement operator (--) decrements numbers.

Decrementing

var x = 5;
x--;
var z = x;
Try it Yourself »

Operator Precedence

Operator precedence describes the order in which operations are performed in an arithmetic expression.

In JavaScript, the operators have a certain order of precedence. In a statement with more than one operator involved, one may be executed before another, even though it is not in that order in the statement.

Example

var x = 100 + 50 * 3;
Try it Yourself »

Is the result of example above the same as 150 * 3, or is it the same as 100 + 150?

Is the addition or the multiplication done first?

If you remember how this works in mathematics, you will know that the multiplication is performed first on the 50*3 part of the statement, even though it does not look like that is the right order when you read from left to right. The reason the multiplication is performed first is that the multiplication operator has a higher precedence in the order of operations than the addition operator. So, any multiplication done within a statement will be performed before any addition, unless you override it somehow.

As with math problems, in JavaScript, the way to override the order of operations is through the use of parentheses to set off the portion of the statement that should be executed first.

Example

var x = (100 + 50) * 3;
Try it Yourself »

When using parentheses, the operations inside the parentheses are computed first.

When many operations have the same precedence (like addition and subtraction), they are computed from left to right:

Example

var x = 100 + 50 - 3;
Try it Yourself »

JavaScript Operator Precedence Values

Value Operator Description Example
19 ( ) Expression grouping (3 + 4)
Value Operator Description Example
18 . Member person.name
18 [] Member person["name"]
Value Operator Description Example
17 () Function call myFunction()
17 new Create new Date()
Value Operator Description Example
16 ++ Postfix Increment i++
16 -- Postfix Decrement i--
Value Operator Description Example
15 ++ Prefix Increment ++i
15 -- Prefix Decrement --i
15 ! Logical not !(x==y)
15 typeof Type typeof x
Value Operator Description Example
14 * Multiplication 10 * 5
14 / Division 10 / 5
14 % Modulo division 10 % 5
14 ** Exponentiation 10 ** 2
Value Operator Description Example
13 + Addition 10 + 5
13 - Subtraction 10 - 5
Value Operator Description Example
12 << Shift left x << 2
12 >> Shift right x >> 2
Value Operator Description Example
11 < Less than x < y 
11 <= Less than or equal x <= y
11 > Greater than x > y
11 >= Greater than or equal x >= y
Value Operator Description Example
10 == Equal x == y
10 === Strict equal x === y
10 != Unequal x != y
10 !== Strict unequal x !== y
Value Operator Description Example
6 && And x && y
Value Operator Description Example
5 || Or x || y
Value Operator Description Example
3 = Assignment x = y
3 += Assignment x += y
3 -= Assignment x -= y
3 *= Assignment x *= y
3 /= Assignment x /= y
Note Expressions in parentheses are fully computed before the value is used in the rest of the expression.

 







JavaScript Assignment


JavaScript Assignment Operators

Assignment operators assign values to JavaScript variables.

Operator Example Same As
= x = y x = y
+= x += y x = x + y
-= x -= y x = x - y
*= x *= y x = x * y
/= x /= y x = x / y
%= x %= y x = x % y

The = assignment operator assigns a value to a variable.

Assignment

var x = 10;
Try it Yourself »

The += assignment operator adds a value to a variable.

Assignment

var x = 10;
x += 5;
Try it Yourself »

The -= assignment operator subtracts a value from a variable.

Assignment

var x = 10;
x -= 5;
Try it Yourself »

The *= assignment operator multiplies a variable.

Assignment

var x = 10;
x *= 5;
Try it Yourself »

The /= assignment divides a variable.

Assignment

var x = 10;
x /= 5;
Try it Yourself »

The %= assignment operator assigns a remainder to a variable.

Assignment

var x = 10;
x %= 5;
Try it Yourself »

 







JavaScript Data Types


String, Number, Boolean, Array, Object.


JavaScript Data Types

JavaScript variables can hold many data types: numbers, strings, arrays, objects and more:

var length = 16;nbsp;                                // Number
var lastName = "Johnson";                       // String
var cars = ["Saab", "Volvo", "BMW"];            // Array
var x = {firstName:"John", lastName:"Doe"};    // Object

The Concept of Data Types

In programming, data types is an important concept.

To be able to operate on variables, it is important to know something about the type.

Without data types, a computer cannot safely solve this:

var x = 16 + "Volvo";

Does it make any sense to add "Volvo" to sixteen? Will it produce an error or will it produce a result?

JavaScript will treat the example above as:

var x = "16" + "Volvo";
Note When adding a number and a string, JavaScript will treat the number as a string. 

Example

var x = 16 + "Volvo";
Try it Yourself »

Example

var x = "Volvo" + 16;
Try it Yourself »

JavaScript evaluates expressions from left to right. Different sequences can produce different results:

JavaScript:

var x = 16 + 4 + "Volvo";

Result:

20Volvo
Try it Yourself »

JavaScript:

var x = "Volvo" + 16 + 4;

Result:

Volvo164
Try it Yourself »

In the first example, JavaScript treats 16 and 4 as numbers, until it reaches "Volvo".

In the second example, since the first operand is a string, all operands are treated as strings.


JavaScript has Dynamic Types

JavaScript has dynamic types. This means that the same variable can be used as different types:

Example

var x;               // Now x is undefined
var x = 5;          // Now x is a Number
var x = "John";      // Now x is a String

JavaScript Strings

A string (or a text string) is a series of characters like "John Doe".

Strings are written with quotes. You can use single or double quotes:

Example

var carName = "Volvo XC60";   // Using double quotes
var carName = 'Volvo XC60';   // Using single quotes

You can use quotes inside a string, as long as they don't match the quotes surrounding the string:

Example

var answer = "It's alright";             // Single quote inside double quotes
var answer = "He is called 'Johnny'";    // Single quotes inside double quotes
var answer = 'He is called "Johnny"';    // Double quotes inside single quotes
Try it Yourself »

You will learn more about strings later in this tutorial.


JavaScript Numbers

JavaScript has only one type of numbers.

Numbers can be written with, or without decimals:

Example

var x1 = 34.00;     // Written with decimals
var x2 = 34;        // Written without decimals

Extra large or extra small numbers can be written with scientific (exponential) notation:

Example

var y = 123e5;      // 12300000
var z = 123e-5;     // 0.00123
Try it Yourself »

You will learn more about numbers later in this tutorial.


JavaScript Booleans

Booleans can only have two values: true or false.

Example

var x = true;
var y = false;

Booleans are often used in conditional testing.

You will learn more about conditional testing later in this tutorial.


JavaScript Arrays

JavaScript arrays are written with square brackets.

Array items are separated by commas.

The following code declares (creates) an array called cars, containing three items (car names):

Example

var cars = ["Saab", "Volvo", "BMW"];
Try it Yourself »

Array indexes are zero-based, which means the first item is [0], second is [1], and so on.

You will learn more about arrays later in this tutorial.


JavaScript Objects

JavaScript objects are written with curly braces.

Object properties are written as name:value pairs, separated by commas.

Example

var person = {firstName:"John", lastName:"Doe", age:50, eyeColor:"blue"};
Try it Yourself »

The object (person) in the example above has 4 properties: firstName, lastName, age, and eyeColor.

You will learn more about objects later in this tutorial.


The "typeof" Operator

You can use the JavaScript typeof operator to find the type of a JavaScript variable:

Example

typeof "John"                 // Returns string
typeof 3.14                   // Returns number
typeof false                  // Returns boolean
typeof [1,2,3,4]              // Returns object
typeof {name:'John', age:34} // Returns object
Try it Yourself »

Note In JavaScript, an array is a special type of object. Therefore typeof [1,2,3,4] returns object. 

Undefined

In JavaScript, a variable without a value, has the value undefined. The typeof is also undefined.

Example

var person;                   // Value is undefined, type is undefined
Try it Yourself »

Any variable can be emptied, by setting the value to undefined. The type will also be undefined.

Example

person = undefined;          // Value is undefined, type is undefined
Try it Yourself »

Empty Values

An empty value has nothing to do with undefined.

An empty string variable has both a value and a type.

Example

var car = "";                // The value is "", the typeof is string
Try it Yourself »

Null

In JavaScript null is "nothing". It is supposed to be something that doesn't exist.

Unfortunately, in JavaScript, the data type of null is an object.

Note You can consider it a bug in JavaScript that typeof null is an object. It should be null.

You can empty an object by setting it to null:

Example

var person = null;           // Value is null, but type is still an object
Try it Yourself »

You can also empty an object by setting it to undefined:

Example

var person = undefined;     // Value is undefined, type is undefined
Try it Yourself »

Difference Between Undefined and Null

typeof undefined             // undefined
typeof null                  // object
null === undefined          // false
null == undefined            // true
Try it Yourself »

 







JavaScript Functions


A JavaScript function is a block of code designed to perform a particular task.

A JavaScript function is executed when "something" invokes it (calls it).


Example

function myFunction(p1, p2) {
    return p1 * p2;              // The function returns the product of p1 and p2
}
Try it Yourself »

JavaScript Function Syntax

A JavaScript function is defined with the function keyword, followed by a name, followed by parentheses ().

Function names can contain letters, digits, underscores, and dollar signs (same rules as variables).

The parentheses may include parameter names separated by commas: (parameter1,  parameter2, ...)

The code to be executed, by the function, is placed inside curly brackets: {}

functionname(parameter1,parameter2, parameter3) {
    code to be executed
}

Function parameters are the names listed in the function definition.

Function arguments are the real values received by the function when it is invoked.

Inside the function, the arguments behave as local variables.

Note A Function is much the same as a Procedure or a Subroutine, in other programming languages.

Function Invocation

The code inside the function will execute when "something" invokes (calls) the function:

You will learn a lot more about function invocation later in this tutorial.


Function Return

When JavaScript reaches a return statement, the function will stop executing.

If the function was invoked from a statement, JavaScript will "return" to execute the code after the invoking statement.

Functions often compute a return value. The return value is "returned" back to the "caller":

Example

Calculate the product of two numbers, and return the result:

var x = myFunction(4,3);        // Function is called, return value will end up in x

function myFunction(a, b) {
    return a * b;                // Function returns the product of a and b
}

The result in x will be:

12
Try it Yourself »

Why Functions?

You can reuse code: Define the code once, and use it many times.

You can use the same code many times with different arguments, to produce different results.

Example

Convert Fahrenheit to Celsius:

function toCelsius(fahrenheit) {
    return (5/9) * (fahrenheit-32);
}
document.getElementById("demo").innerHTML = toCelsius(77);
Try it Yourself »

The () Operator Invokes the Function

Using the example above, toCelsius refers to the function object, and toCelsius() refers to the function result.

Example

Accessing a function without () will return the function definition:

function toCelsius(fahrenheit) {
    return (5/9) * (fahrenheit-32);
}
document.getElementById("demo").innerHTML = toCelsius;
Try it Yourself »

Functions Used as Variables

In JavaScript, you can use functions the same way as you use variables.

Example

You can use:

var text = "The temperature is " + toCelsius(77) + " Celsius";

Instead of:

var x = toCelsius(32);
var text = "The temperature is " + x + " Celsius";
Try it Yourself »

Note You will learn a lot more about functions later in this tutorial.