这条线在做什么? arr.length>>>>> 0

发布于 2025-01-07 15:57:53 字数 85 浏览 2 评论 0原文

这是做什么用的:

arr.length >>> 0

我为什么要使用它?

What is this for:

arr.length >>> 0

And why should I want to use it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寂寞笑我太脆弱 2025-01-14 15:57:53

这是无符号右移运算符。在这种情况下(与0一起使用时),它确保arr.length是一个整数,或者更确切地说,计算结果为严格的arr.length无符号 32 位整数值。 (这意味着它永远不会 NaN,永远不会为负数,并且永远不会有小数部分。)

示例:

'1'       >>> 0: 1
1         >>> 0: 1
''        >>> 0: 0
undefined >>> 0: 0
null      >>> 0: 0
1.0∙∙∙01  >>> 0: 1

比较:

Number('1')      : 1
Number(1)        : 1
Number('')       : 0
Number(undefined): NaN
Number(null)     : 0
Number(1.0∙∙∙01) : 1.0∙∙∙01

它只是为了确保使用正确的长度。

It's the unsigned right shift operator. In this case (when used with 0) it ensures that arr.length is an integer, or rather, evaluates to arr.length as strict unsigned 32-bit integer value. (This means it's never NaN, never negative, and never has a decimal part.)

Examples:

'1'       >>> 0: 1
1         >>> 0: 1
''        >>> 0: 0
undefined >>> 0: 0
null      >>> 0: 0
1.0∙∙∙01  >>> 0: 1

Compare to:

Number('1')      : 1
Number(1)        : 1
Number('')       : 0
Number(undefined): NaN
Number(null)     : 0
Number(1.0∙∙∙01) : 1.0∙∙∙01

It’s just there to ensure that the right length is being used.

初熏 2025-01-14 15:57:53

确保 .length 是 32 位整数。

在大多数实现中,数组索引仅限于 32 位范围(至少在使用 Array.prototype 方法以及 .length 的神奇行为时)。 。

Ensures that .length is a 32-bit integer.

In most implementations, Array indices are limited to a 32-bit range (at least when working with Array.prototype methods, and the magic behaviors of .length).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文