BigInt.asIntN()

BigInt.asIntN 静态方法将 BigInt 值转换为一个 -2width-1 与 2width-1-1 之间的有符号整数。

语法

BigInt.asIntN(width, bigint);

参数

width
可存储整数的位数。
bigint
要存储在指定位数上的整数。

返回值

bigint 模(modulo) 2width 作为有符号整数的值。

例子

保持在64位范围内

BigInt.asIntN() 方法对于保持在64位(64-bit)算数范围内非常有用。

const max = 2n ** (64n - 1n) - 1n;

BigInt.asIntN(64, max);
// ↪ 9223372036854775807n

BigInt.asIntN(64, max + 1n);
// ↪ -9223372036854775808n  
// negative because of overflow

标准

Specification Status
ECMAScript Latest Draft (ECMA-262)
BigInt.asIntN()
Draft

浏览器支持

Update compatibility data on GitHub
Desktop Mobile Server
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet Node.js
asIntN Chrome Full support 67 Edge No support No Firefox Full support 68 IE No support No Opera Full support 54 Safari No support No WebView Android Full support 67 Chrome Android Full support 67 Firefox Android Full support 68 Opera Android Full support 48 Safari iOS No support No Samsung Internet Android Full support 9.0 nodejs Full support 10.4.0

Legend

Full support  
Full support
No support  
No support

请参阅