Javascript Course


With operators we can manipulate, combine and modify data in a program or script. There are many kinds of operators, in this lesson it is presented the types of operators used in JavaScript.


Arithmetic operators

We can say that arithmetic operators are the main operators for numbers, they make arithmetic operations:
OperatorExample
Addition: +
let a = 8;
let b = 3;
document.write(a + b); // 11
Subtraction: -
let a = 8;
let b = 3;
document.write(a - b); // 5
Multiplication: *
let a = 8;
let b = 3;
document.write(a * b); // 24
Division: /
let a = 9;
let b = 3;
document.write(a / b); // 3
In addition to these four operators, there are three other arithmetic operators used in programming:
OperatorDescription /Example
Modulo: % - It determines the rest of the division of two numbers.
let a = 8;
let b = 3;
document.write(a % b); // 2
Increment : ++ - Increases the value by one unit.
let a = 9;
a++;
document.write(a); // 10
Decrement: -- - Substract the value by one unit.
let a = 9;
a--;
document.write(a); // 8

Assigning operators

These operators evaluate first the operand on the right and the value is assigned to the variable of the left side of the sign '='.
OperatorExample
=
let a = 8;
document.write(a); // 8
+=
let a = 8;
a += 3; //Same with: a = a+3
document.write(a); // 11
-=
let a = 8;
a -= 3; //Same with: a = a-3
document.write(a); // 5
*=
let a = 8;
a *= 3; //Same with: a = a*3
document.write(a); // 24
/=
let a = 84;
a /= 4; //Same with: a = a/4
document.write(a); // 21
%=
let a = 8;
a %= 3; //Same with: a = a%3
document.write(a); // 2

Comparation operators

Expressions using these operators make a question about two values which they compare. The answer can be TRUE or FALSE.

A commonly used comparison operator is the identity operator, represented by two equal signs '=='. It's different from simple '=' (this it assigns a value).
The '==' operator compares two values to determine whether they are the same, equal in value.


- List with comparation operators:
OperatorDescription /Example
== - Identical as value.
let a = '4'; //string
let b = 4; //number

document.write( (a == b) ); //true
=== - Identical, as value and data type.
let a = '4'; //string
let b = 4; //number

document.write( (a === b) ); //false
!= - Different as value.
let a = 9;
let b = 4;

document.write( (a != b) ); //true
!== - Different as value or data type.
let a = 4;
let b = 4;

document.write( (a !== b) ); //false
> - Bigger.
let a = 9;
let b = 4;

document.write( (a > b) ); //true
< - Smaller.
let a = 9;
let b = 4;

document.write( (a < b) ); //false
>= - Bigger or identical.
let a = 4;
let b = 4;

document.write( (a >= b) ); //true
<= - Smaller or identical.
let a = 5;
let b = 4;

document.write( (a <= b) ); //false

Logical operators

The logical operators compare two expressions and return TRUE or FALSE.
OperatorDescription /Example
&& - (AND), compares two expressions and return TRUE if both are true, otherwise it returns FALSE.
var x = 9;
var y = 4;

document.write( (x>7 && y<8) ); //true
|| - (OR), compares two expressions and return TRUE if at least one of them is true, otherwise it returns FALSE.
var x = 9;
var y = 4;

document.write( (x>12 || y<8) ); //true
! - not, unary operator, uses a single expression and returns TRUE if the expression is false, if the expression is true, returns FALSE.
var x = 9;
var y = 9;

document.write( !(x == y) ); //false

Concatenation operator for strings

The concatenation operator (+) can also be used to join (add) string variables or text values together.
- Example:
let str1 ='WebSite: ';
let str2 ='CoursesWeb.net';

document.write(str1 + str2); //WebSite: CoursesWeb.net
If the concatenation operator is used with a number and a string, the result is a string with the two merged values.
- Example:
let x = 8; //number
let y ='9' //string

document.write(x + y); //89

The conditional operator (Ternary)

The conditional operator (called Ternary) assigns a value to a variable based on a condition.
Syntax:
variable = (condition) ? val1 :val2
- First, it evaluates the condition, if it returns True, the variable takes the 'val1' value, otherwise it takes the value 'val2'.
Here is an example:
let age = 17;
let copt = (age < 18) ? 'Young' :'Mature';

document.write(copt); // Young

Operators precedence

When in expressions are used many operators, the JavaScript takes into account the precedence (the importance) of each operator. As in arithmetic, in an equation with multiplication and addition (2 + 3 * 4), if there aren't parentheses, multiplication is performed first. The same thing is for the programming operators, too. If there are several operators with the same precedence, JavaScript will evaluate them from left to right. The following table apresents in order the precedence of the operators:

Operator Description
() grouping
!   ++   -- negation, increment, decrement
*   /   % multiplication, division
+   - addition, subtraction
<   <=   >   >= comparison
==   != equality
&& logical AND
|| logical OR
? : conditional /Ternary
=   +=   -=   *=   /=   %= assigning

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which meta tag provides a short description of the page?
<meta content="..."> <meta description="..."> <meta http-equiv="...">
<meta name="description" content="70-160 characters that describes the content of the page" />
Which CSS property is used to stop the wrapping effect of the "float"?
clear text-align position
#some_id {
  clear: both;
}
Click on the method which gets an array with all the elements in the document that have a specified tag name.
getElementsByName() getElementById() getElementsByTagName()
var divs = document.getElementsByTagName("div");
var nr_divs = divs.length;
alert(nr_divs);
Indicate the PHP function which returns the number of elements in array.
is_[) count() strlen()
$arr =[7, 8, "abc", 10);
$nri = count($arr);
echo $nri;        // 4
JavaScript Operators

Last accessed pages

  1. PHP Unzipper - Extract Zip, Rar Archives (31816)
  2. Arrays in ActionScript 3 (3091)
  3. String Object (667)
  4. Register and show online users and visitors (39428)
  5. PhpSpreadsheet - Read, Write Excel and LibreOffice Calc files (26057)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (202)
  2. Read Excel file data in PHP - PhpExcelReader (66)
  3. The Mastery of Love (56)
  4. PHP Unzipper - Extract Zip, Rar Archives (52)
  5. Working with MySQL Database (34)
Chat
Chat or leave a message for the other users
Full screenInchide