Saturday, November 16, 2024
Google search engine
HomeLanguagesJavascriptBitwise XOR Assignment (^=) Operator in JavaScript

Bitwise XOR Assignment (^=) Operator in JavaScript

The Javascript Bitwise XOR assignment is represented by (^=). It is used to perform a bitwise XOR operation on both operands and assign the result to the left operand.

Syntax:

a ^= b 
// a = a ^ b

Where –

  • a = First operand
  • b = Second operand

 

Example: In this example, we will perform the basic Bitwise XOR assignment operation on both operands.

Javascript




let a = 2;   // Binary representation 10
let b = 4;   // Binary representation 100
  
console.log(a ^= b);


Output: The number 2 is represented as 10 in binary, and the number 3 is represented as 100 in binary. When the XOR assignment is performed 110  is returned which after conversion to decimal returns 6.

6  // Bit presentation 110

Example 2: In this example, we will use a bitwise XOR assignment operation on both operands and display the result.

Javascript




let a = 14;  // Binary representation 1110
let b = 18;  // Binary representation 10010
  
console.log(a ^= b);


Output:  The number 14 is represented as 1110 in binary, and the number 18 is represented as 10010 in binary. when the XOR assignment is performed 11100 is returned which conversion to decimal is 28.

28  // Bit presentation 11100

We have a complete list of Javascript Assignment Operators, to go through those please check the Javascript Assignment Operator article.

Supported Browsers:

  • Chrome 1
  • Edge 12
  • Firefox 1
  • Opera 3
  • Safari 1
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments