BigInt.asUintN()方法是JavaScript中的内置方法,用于将BigInt值包装为0到2之间的无符号整数width-1。
用法:
BigInt.asUintN (width, bigint);
参数:该方法接受上述和以下所述的两个参数:
- width:此参数保存可用于整数大小的位数。
- bigint:此参数保存要钳位以适合提供的位的整数。
返回值:此方法返回bigint模2的值width作为无符号整数。
以下示例说明了JavaScript中的BigInt.asUintN()方法:
范例1:
<script>
let maxlimit = 2n ** (64n - 1n) - 1n;
function GFG(num) {
(num > maxlimit) ?
console.log("Number exceed the limit "
+ "of signed 64-bit integer!");
console.log(BigInt.asUintN(64, num));
}
GFG(2n ** 16n);
GFG(2n ** 32n);
GFG(2n ** 64n);
</script>
输出:
65536n 4294967296n "Number exceed the limit of signed 64-bit integer!"
范例2:
<script>
const max = 2n ** (64n - 1n) - 1n;
console.log(BigInt.asUintN(64, max));
console.log(BigInt.asUintN(64, max + 1n));
console.log(BigInt.asUintN(32, max));
</script>
输出:
9223372036854775807n 9223372036854775808n 4294967295n
支持的浏览器:下面列出了BigInt.asUintN()方法支持的浏览器:
- 谷歌浏览器
- Firefox
- Opera
- Safari
- Edge
相关用法
- Javascript Int8Array from()用法及代码示例
- Javascript hasOwnProperty()用法及代码示例
- Javascript Uint32Array from()用法及代码示例
- Javascript Unit16Array.from()用法及代码示例
- Javascript Int16Array from()用法及代码示例
- Javascript handler.has()用法及代码示例
- Javascript padEnd()用法及代码示例
- Javascript handler.get()用法及代码示例
- Javascript Reflect.get()用法及代码示例
- Javascript exec()用法及代码示例
- Javascript padStart()用法及代码示例
- Javascript Float32Array.from()用法及代码示例
- Javascript Promise.all()用法及代码示例
- Javascript Int32Array.from()用法及代码示例
- Javascript compile()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 JavaScript | BigInt.asUintN() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。