JavaScript 中什么字节级异或赋值运算符 (^=) ?
在左操作数上执行右操作数的异或运算,并将结果分配给左操作数。
范例
你可以尝试运行以下代码来学习如何使用字节级异或赋值运算符
<html> <body> <script> var a = 2; // Bit presentation 10 var b = 3; // Bit presentation 11 document.write("(a ^= b) => "); document.write(a ^= b); </script> </body> </html>
广告