About 625,000 results
Open links in new tab
  1. Bitwise XOR assignment (^=) - JavaScript - MDN

    Jul 8, 2025 · The bitwise XOR assignment (^=) operator performs bitwise XOR on the two operands and assigns the result to the left operand.

  2. Bitwise exclusive OR operator: ^ | Microsoft Learn

    Mar 2, 2024 · The bitwise exclusive OR operator (^) compares each bit of its first operand to the corresponding bit of its second operand. If the bit in one of the operands is 0 and the bit in the …

  3. Assignment Operators in C++ - GeeksforGeeks

    Jan 8, 2025 · Bitwise XOR Assignment Operator (^=) The bitwise XOR assignment operator performs a bitwise XOR between the variable on the left and the value or variable on the right …

  4. Operators in C and C++ - Wikipedia

    Operators in C and C++ This is a list of operators in the C and C++ programming languages. All listed operators are in C++ and lacking indication otherwise, in C as well. Some tables include …

  5. JavaScript Bitwise XOR assignment English - Runebook.dev

    The ^= operator performs bitwise XOR on the two operands and assigns the result to the left operand.

  6. JavaScript Bitwise Operators (with Examples) - Programiz

    In this tutorial, you will learn about JavaScript bitwise operators and its types with the help of examples.

  7. Assignment operators - MDN Web Docs

    The addition assignment operator adds the value of the right operand to a variable and assigns the result to the variable. The types of the two operands determine the behavior of the addition …

  8. Bitwise XOR Assignment (^=) Operator in JavaScript

    Jul 23, 2025 · 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.

  9. Bitwise XOR (^) - JavaScript - MDN

    Jul 8, 2025 · Description The ^ operator is overloaded for two types of operands: number and BigInt. For numbers, the operator returns a 32-bit integer. For BigInts, the operator returns a …

  10. C Bitwise XOR Operator - Syntax, Examples - Tutorial Kart

    In C, the Bitwise XOR ^ operator is used to perform a bitwise exclusive OR operation between two numbers. It compares corresponding bits of two operands and returns 1 if the bits are different …