我试图了解 JavaScript 中的二元运算符(仅限二元运算符)有什么可能。到目前为止,我发现的二元运算符列表如下。它们主要来自这个列表,但是有没有遗漏?
请注意,我只关注二元运算符,根据上面列出的来源,它被定义为与两个对象一起使用的二元运算符(这准确吗?)。我还添加了来自@zessx 的补充内容。
+ //Add
- //Subtract
/ //Divided by
* //Multiple
% //Modulus
< //Less than
> //Greater than
& //AND
| //OR
^ //XOR
~ //Invert each bits
<< //Move all bits onto the left
>> //Move all bits onto the right
>>> //Move all bits onto the right and fill left end with 0