JavaScript中的x | 0是多少?

前端之家收集整理的这篇文章主要介绍了JavaScript中的x | 0是多少?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我以前的问题的接受的答案
( What is the fastest way to generate a random integer in javascript?),我想知道一个数字如何通过符号|失去其小数位
.

例如:

var x = 5.12042;
x = x|0;

那个楼层的数字是多少到5?

更多的例子:

console.log( 104.249834 | 0 ); //104
console.log( 9.999999 | 0 );   // 9

解决方法

因为根据ECMAScript规范,按位运算符操作符调用ToInt32对每个表达式进行评估.

11.10 Binary Bitwise Operators

The production A : A @B,where @ is one of the bitwise operators in
the productions above,is evaluated as follows:

  1. Evaluate A.

  2. Call GetValue(Result(1)).

  3. Evaluate B.

  4. Call GetValue(Result(3)).

  5. Call ToInt32(Result(2)).

  6. Call ToInt32(Result(4)).

  7. Apply the bitwise operator @ to Result(5) and Result(6). The result is a signed 32 bit integer.

  8. Return Result(7).

原文链接:https://www.f2er.com/js/152406.html

猜你在找的JavaScript相关文章