DEV Community

Cover image for UNDERSTANDING JAVASCRIPT OPERATORS.
Maame Afia Fordjour
Maame Afia Fordjour

Posted on

UNDERSTANDING JAVASCRIPT OPERATORS.

INTRODUCTION

Operator symbols in JavaScript are used to carry out operations on operands. There are several types of JavaScript operators, they include;

๐Ÿ“Œ Arithmetic Operators.
๐Ÿ“Œ Assignment Operators.
๐Ÿ“Œ Comparison Operators.
๐Ÿ“Œ Logical Operators.
๐Ÿ“Œ Conditional Operators.

JAVASCRIPT ARITHMETIC OPERATORS

The following common arithmetic operators are supported by JavaScript:

๐Ÿ“Œ Addition (+)
๐Ÿ“Œ Subtraction (-)
๐Ÿ“Œ Division (/)
๐Ÿ“Œ Multiplication (*)

The return value of an arithmetic operator is a single numerical value that it accepts as operands. Literals or variables may be used as the numerical values.

THE ADDITION OPERATOR

The sum of two values is what the addition operator returns. For instance, the following computes the sum of two numbers using the addition operator;

let sum = 20 + 20;
console.log(sum); // 40
Enter fullscreen mode Exit fullscreen mode

The addition operator can also be applied to two variables. For instance:

let initialPrice  = 9.99,
    deliveryFee = 1.99;
let totalPrice  = initialPrice + deliveryFee;

console.log(totalPrice);
Enter fullscreen mode Exit fullscreen mode

This would be displayed as;

11.98
Enter fullscreen mode Exit fullscreen mode

The addition operator follows the following guidelines if either value is a string:

๐Ÿ“Œ It joins the second string to the first string if both values are strings.
๐Ÿ“Œ The numeric value is implicitly converted into a string if one of the values is a string, and two strings are concatenated.

For instance, the following adds two strings together by concatenating them using the addition operator:

let a = '20',
    b = '30';
let result = a + b;

console.log(result);
Enter fullscreen mode Exit fullscreen mode

This would be displayed as;

2030
Enter fullscreen mode Exit fullscreen mode

The outcome of employing the addition operator with special numbers is displayed in the following table:

Image description

THE SUBTRACTION OPERATOR

One number is subtracted from another using the subtraction operator (-). For instance:

let result = 300 - 10;
console.log(result); // 390
Enter fullscreen mode Exit fullscreen mode

The JavaScript engine will do the following if a value is a string, a boolean, null, or undefined:

๐Ÿ“Œ First, use the Number() function to transform the value into a number.
๐Ÿ“Œ Next, carry out the subtraction.

Use of the subtraction operator with exceptional values is demonstrated in the following table:

Image description

THE MULTIPLICATION OPERATOR

The multiplication operator is represented by the asterisk (*) in JavaScript. A single value is produced by multiplying two numbers using the multiplication operator. For instance:

let result = 3 * 3;
console.log(result);
Enter fullscreen mode Exit fullscreen mode

This will be displayed as;

9
Enter fullscreen mode Exit fullscreen mode

The JavaScript engine executes the multiplication and implicitly turns either value into a number if it is not already one using the Number() method. Consider this:

let result = '5' * 20;

console.log(result);
Enter fullscreen mode Exit fullscreen mode

This will be displayed as;

100
Enter fullscreen mode Exit fullscreen mode

The multiplier's behavior with special values is depicted in the following table:

Image description

THE DIVIDE OPERATOR

The divide operator in JavaScript is represented by the slash (/) character. The first value is divided by the second using the divide operator. For instance:

let result = 40 / 10;

console.log(result); // 4
Enter fullscreen mode Exit fullscreen mode

The JavaScript engine converts either value into a number for division if it is not already one. For instance:

let result = '40' / 10;
console.log(result); // 4;
Enter fullscreen mode Exit fullscreen mode

The behavior of the divide operators when used with exceptional values is illustrated in the following table:

Image description

ASSIGNMENT OPERATORS

Variables can have values assigned to them using assignment operators. For instance,

const x = 9;

Enter fullscreen mode Exit fullscreen mode

The variable x is given the value 9 in this case thanks to the = operator.

Image description

SHIFT ASSIGNMENT OPERATORS

Image description

LOGICAL ASSIGNMENT OPERATORS

Image description

๐Ÿ“Œ The assignment operator += increases a variable's value.

For instance;

let x = 10;
x += 5;
Enter fullscreen mode Exit fullscreen mode

The value of x is 15.

๐Ÿ“Œ With the -= assignment operator, a variable's value is subtracted.

For instance;

let x = 10;
x -= 5;
Enter fullscreen mode Exit fullscreen mode

The value of x is 5.

๐Ÿ“Œ The variable is multiplied using the assignment operator *=.

For instance;

let x = 10;
x *= 5;
Enter fullscreen mode Exit fullscreen mode

The value of x is 50.

๐Ÿ“Œ A variable is divided using the /= assignment.

For instance;

let x = 10;
x /= 5;
Enter fullscreen mode Exit fullscreen mode

The value of x is 2.

๐Ÿ“Œ The remainder is assigned to a variable by the %= assignment operator.

For instance;

let x = 10;
x %= 5;
Enter fullscreen mode Exit fullscreen mode

The value of x is 0.

๐Ÿ“Œ A variable is left shifted by the assignment operator =.

For instance;

let x = -100;
x <<= 5;
Enter fullscreen mode Exit fullscreen mode

The value of x is -3200.

๐Ÿ“Œ The assignment operator >>= moves a variable to the right (signed).

For instance;

let x = -100;
x >>= 5;
Enter fullscreen mode Exit fullscreen mode

The value of x is -4.

๐Ÿ“Œ A variable is right shifted by the assignment operator >>>=. (unsigned).

For instance;

let x = -100;
x >>>= 5;
Enter fullscreen mode Exit fullscreen mode

The value of x is 134217724.

๐Ÿ“Œ An assignment operator's &= function ANDs a variable.

For instance;

let x = 10;
x &= 5;
Enter fullscreen mode Exit fullscreen mode

The value of x is 4.

COMPARISON OPERATORS

When two values are compared, a comparison operator returns a boolean value, which can be either true or false. Decision-making and loops both employ comparison operators.

Image description

๐Ÿ“Œ THE EQUAL TO OPERATOR

const a = 5, b = 2, c = 'hello';

// equal to operator
console.log(a == 5);     // true
console.log(b == '2');   // true
console.log(c == 'Hello');  // false
Enter fullscreen mode Exit fullscreen mode

If the operands are equal, the evaluation of == is true.

๐Ÿ“Œ While = is an assignment operator in JavaScript, == is a comparison operator. You can receive an undesirable outcome if you accidentally use = instead of ==.

๐Ÿ“Œ NOT EQUAL TO OPERATOR

const a = 3, b = 'hello';

// not equal operator
console.log(a != 2); // true
console.log(b != 'Hello'); // true
Enter fullscreen mode Exit fullscreen mode

The operands must not be equal for!= to evaluate to true.

๐Ÿ“Œ Strict Equal to Operator

const a = 2;

// strict equal operator
console.log(a === 2); // true
console.log(a === '2'); // false
Enter fullscreen mode Exit fullscreen mode

If the operands are equal and of the same type, === evaluates to true. The integers 2 and "2" are identical in this case, but the data type is different. And while comparing, the operator === also verifies the data type.

๐Ÿ“Œ The following is the distinction between == and ===:
While === only evaluates to true if the operands are equal and of the same type, === evaluates to true if the operands are equal.

๐Ÿ“Œ Strict Not Equal to Operator

const a = 2, b = 'hello';

// strict not equal operator
console.log(a !== 2); // false
console.log(a !== '2'); // true
console.log(b !== 'Hello'); // true
Enter fullscreen mode Exit fullscreen mode

If the operands are strictly not equal, the expression!== evaluates to true. Exactly the reverse of strictly equal ===, it.
In the case above, 2!== '2' returns true. It's because despite having the same value, their types are different.

๐Ÿ“Œ Greater than Operator

const a = 3;

// greater than operator
console.log(a > 2); // true
Enter fullscreen mode Exit fullscreen mode

If the left operand is larger than the right operand, the expression > evaluates to true.

๐Ÿ“Œ Greater than or Equal to Operator

const a = 3;

// greater than or equal operator
console.log(a >= 3); //true
Enter fullscreen mode Exit fullscreen mode

If the left operand is greater than or equal to the right operand, >= evaluates to true.

LOGICAL OPERATORS

The logical operators AND, OR, and NOT carry out logical operations.

Image description

๐Ÿ“Œ Logical AND Operator

const a = true, b = false;
const c = 4;

// logical AND
console.log(a && a); // true
console.log(a && b);  // false

console.log((c > 2) && (c < 2)); // false
Enter fullscreen mode Exit fullscreen mode

If both operands are true, && evaluates to true; otherwise, it evaluates to false.

๐Ÿ“Œ With numbers, logical operators are also possible. In JavaScript, all numbers other than 0 are true, and 0 is false.

๐Ÿ“Œ Logical OR Operator

const a = true, b = false, c = 4;


// logical OR
console.log(a || b); // true
console.log(b || b); // false
console.log((c>2) || (c<2)); // true
Enter fullscreen mode Exit fullscreen mode

If any of the operands is true, || evaluates to true. The outcome is false if both operands are false.

๐Ÿ“Œ Logical NOT Operator

const a = true, b = false;

// logical NOT
console.log(!a); // false
console.log(!b); // true
Enter fullscreen mode Exit fullscreen mode

If the operand is false,! evaluates to true, and vice versa.

CONDITIONAL OPERATORS

The conditional operator, also known as the ternary operator, first determines if an expression has a true or false value before executing one of the two given statements based on the evaluation's outcome.

Image description

๐Ÿ“Œ The usual if statement is replaced by the conditional operator. Three operands are required.

condition: An expression with a true/false value.

Expressions having values of any type are expr1, expr2.

The operator returns the value of expr1 if the condition is true; otherwise, it returns the value of expr2.

For example

๐Ÿ“Œ status = (marks >= 30) ? "Pass" : "Fail"

If the score is 30 or higher, the statement assigns the value "Pass" to the variable status. If not, "Fail" is assigned as the value for status.

For instance;

if marks>=30
 document.write("Pass");
 else
 document.write("Fail");
Enter fullscreen mode Exit fullscreen mode

Thanks for the read!

Top comments (0)