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:
Operator | Example |
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:
Operator | Description /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 '='.
Operator | Example |
= |
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:
Operator | Description /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.
Operator | Description /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 tag is used to add lists into <ul> and <ol> elements?
<dt> <dd> <li><ul>
<li>http://coursesweb.net/html/</li>
<li>http://coursesweb.net/css/</li>
</ul>
Which value of the "display" property creates a block box for the content and ads a bullet marker?
block list-item inline-block.some_class {
display: list-item;
}
Which instruction converts a JavaScript object into a JSON string.
JSON.parse() JSON.stringify eval()var obj = {
"courses": ["php", "javascript", "ajax"]
};
var jsonstr = JSON.stringify(obj);
alert(jsonstr); // {"courses":["php","javascript","ajax"]}
Indicate the PHP class used to work with HTML and XML content in PHP.
stdClass PDO DOMDocument$strhtml = '<body><div id="dv1">CoursesWeb.net</div></body>';
$dochtml = new DOMDocument();
$dochtml->loadHTML($strhtml);
$elm = $dochtml->getElementById("dv1");
echo $elm->nodeValue; // CoursesWeb.net