Skip to main content

JavaScript Operators | Arithmetic - Assignment - Comparison - Logical - Unary - Conditional and Bitwise Operators - Types of operators in JavaScript

JavaScript Operators:

JavaScript operators are symbols used to perform operations on variables and values. They allow you to manipulate data and perform calculations. 

Here are the main types of operators in JavaScript:

1. Arithmetic Operators:

   - `+` (Addition): Adds two operands.
   - `-` (Subtraction): Subtracts the right operand from the left operand.
   - `*` (Multiplication): Multiplies two operands.
   - `/` (Division): Divides the left operand by the right operand.
   - `%` (Modulus): Returns the remainder when the left operand is divided by the right operand.
   - `` (Exponentiation): Raises the left operand to the power of the right operand.

   javascript
   let a = 5;
   let b = 2;
   let result = a + b; // result is 7

Arithmetic - Assignment - Comparison - Logical - Unary - Conditional and Bitwise Operators - Types of operators in JavaScript
JavaScript Operators

2. Assignment Operators:

   - `=` (Assignment): Assigns the value of the right operand to the left operand.
   - `+=`, `-=`, `*=`, `/=`, `%=` (Compound Assignment): Performs the corresponding arithmetic operation and assigns the result to the left operand.

   javascript
   let x = 10;
   x += 5; // x is now 15

3. Comparison Operators:

   - `==` (Equality): Returns true if the operands are equal.
   - `===` (Strict Equality): Returns true if the operands are equal in value and type.
   - `!=` (Inequality): Returns true if the operands are not equal.
   - `!==` (Strict Inequality): Returns true if the operands are not equal in value or type.
   - `>` (Greater Than), `<` (Less Than), `>=` (Greater Than or Equal To), `<=` (Less Than or Equal To): Compare the values of the operands.

   javascript
   let a = 5;
   let b = '5';

   console.log(a == b);  // true (loose equality)
   console.log(a === b); // false (strict equality)

4. Logical Operators:

   - `&&` (Logical AND): Returns true if both operands are true.
   - `||` (Logical OR): Returns true if at least one of the operands is true.
   - `!` (Logical NOT): Returns true if the operand is false and vice versa.

   javascript
   let x = true;
   let y = false;

   console.log(x && y); // false
   console.log(x || y); // true
   console.log(!x);     // false

5. Unary Operators:

   - `+` (Unary Plus): Converts its operand to a number.
   - `-` (Unary Minus): Negates its operand.

   javascript
   let num = '5';
   console.log(+num);  // 5 (converted to a number)

6. Conditional (Ternary) Operator:

   - `condition ? expr1 : expr2`: Returns `expr1` if `condition` is true; otherwise, it returns `expr2`.

   javascript
   let age = 20;
   let status = (age >= 18) ? 'Adult' : 'Minor';

7. Bitwise Operators:

   - `&` (Bitwise AND): Performs a bitwise AND operation.
   - `|` (Bitwise OR): Performs a bitwise OR operation.
   - `^` (Bitwise XOR): Performs a bitwise XOR (exclusive OR) operation.
   - `~` (Bitwise NOT): Inverts the bits of its operand.
   - `<<` (Left Shift): Shifts the bits of the left operand to the left.
   - `>>` (Right Shift): Shifts the bits of the left operand to the right.
   - `>>>` (Unsigned Right Shift): Shifts the bits of the left operand to the right, filling with zero.

   javascript
   let a = 5;  // binary representation: 0101
   let b = 3;  // binary representation: 0011

   console.log(a & b);   // 1 (bitwise AND)
   console.log(a | b);   // 7 (bitwise OR)
   console.log(a ^ b);   // 6 (bitwise XOR)
   console.log(~a);      // -6 (bitwise NOT)
   console.log(a << 1);  // 10 (left shift by 1)
   console.log(a >> 1);  // 2 (right shift by 1)
   

These are the fundamental operators in JavaScript that allow you to perform a wide range of operations on variables and values. Understanding how to use these operators is crucial for writing effective and expressive JavaScript code.

Comments

Popular posts from this blog

Biography of Manohar Joshi

Biography of Manohar Joshi: Manohar Gajanan Joshi is an Indian politician who has played a significant role in Maharashtra state politics. Born on December 2, 1937, in a middle-class family in a village called Ganeshpeth in Ratnagiri district, Maharashtra, Joshi's journey into politics was marked by his association with the Shiv Sena, a right-wing regional political party in India. Joshi's political career began in the late 1960s when he joined the Shiv Sena, which was then led by its founder, Bal Thackeray. He quickly rose through the ranks of the party due to his organizational skills, dedication, and ideological alignment with the party's principles, which advocated for the interests of the Marathi-speaking population of Maharashtra. In 1972, Manohar Joshi won his first election to the Brihanmumbai Municipal Corporation (BMC), marking the beginning of his electoral career. He served as a corporator in the BMC and later became the Mayor of Mumbai in 1976. Joshi's tenu...

Merry Christmas Messages and Statuses | History and Celebration Christmas - Happy Christmas Status and Messages for Social Media

Merry Christmas Messages and Statuses: Wishing you a Merry Christmas 2023! Here are some messages and statuses that you can share with your loved ones: "May your Christmas be filled with joy, laughter, and love. Wishing you a wonderful holiday season!". "Sending you warm wishes and good cheer this Christmas. Have a great time with your family and friends!". "May the spirit of Christmas fill your heart with peace and happiness. Merry Christmas!". "Wishing you a magical and blissful holiday season. Have a Merry Christmas and prosperous New Year!". "May this Christmas bring you all the love and luck in the world. Merry Christmas and a Happy New Year!". Wishing you a Merry Christmas 2023 Here are some Christmas messages that you can use to wish your friends and family a Merry Christmas: 1. Wishing you a Christmas filled with joy, love, and laughter. May the spirit of Christmas bring warmth to your heart and happiness to your home. 2. May y...

Biography of Abbie Hoffman | Early Life and Political Activism - Later Years and Personal Life - Legacy of Abbie Hoffman

Biography of Abbie Hoffman: Abbie Hoffman (November 30, 1936 – April 12, 1989) was an American political and social activist known for his involvement in the counterculture and anti-war movements of the 1960s and 1970s. He was a key figure in the Youth International Party (Yippies) and was known for his theatrical and often humorous protests.  Here is a brief biography of Abbie Hoffman: Early Life of Abbie Hoffman: 1. Birth: Abbie Hoffman was born on November 30, 1936, in Worcester, Massachusetts, USA. 2. Education: He attended Brandeis University, where he earned a degree in psychology in 1959. Parada Kahanee Political Activism: 1. Civil Rights Movement: Hoffman began his activism by participating in the civil rights movement during the early 1960s. 2. Youth International Party (Yippies): In 1967, Hoffman, along with Jerry Rubin and others, co-founded the Yippies, a countercultural and anti-authoritarian political party known for its unconventional and theatrical protes...