ES11 标准之 BigInt 类型使用心得与分享
简介
随着 Web 应用变得越来越复杂,数字计算的精度需求也愈加严格,为此 ES11 标准引入了 BigInt 类型来弥补 JavaScript 中 Number 类型保存的最大值范围限制。BigInt 类型是一种大整数类型,可以代表任意大小的整数,它在特定场景中的使用效果非常显著。该类型目前受到越来越多的前端开发者的青睐。
使用教程
- 基本语法
使用 BigInt 类型在语法上类似于 Number 类型,可以通过在数字后面加上 n 后缀来创建 BigInt 类型的值。
const val = 100n; const val2 = BigInt(100); console.log(typeof val, val); // "bigint", 100n console.log(typeof val2, val2); // "bigint", 100n
- 运算
BigInt 类型支持与 Number 类型的运算,但需要注意的是,对于其他类型的值,BigInt 类型的运算符不适用,需要先将其转换为 BigInt 类型。
console.log(10n + 20n); // 30n console.log(20n - 10n); // 10n console.log(10n * 20n); // 200n console.log(100n / 3n); // 33n console.log(100n % 3n); // 1n console.log(typeof 10n); // "bigint"
- 转换
需要将 BigInt 类型转换为其他类型时,可以使用 Number() 方法或者 BigInt.asIntN() 方法。前者将返回在 Number 类型能表达的范围内的最佳近似值;后者将返回一个指定位数的 BigInt 类型,可以控制 BigInt 转换为 JavaScript 中的 Number 时的精度。
console.log(Number(10n)); // 10 console.log(Number.MAX_SAFE_INTEGER); // 9007199254740991 console.log(Number(9007199254740992n)); // 9007199254740992 const x = -10n; console.log(BigInt.asIntN(8, x)); // 246n console.log(BigInt.asIntN(2, x)); // 10n
- 位运算
ES11 中新增了许多 BigInt 类型专属的位运算符,可用于处理大整数的位操作。例如:
console.log(0b1010n & 0b1111n); // 0b1010n console.log(0b1010n | 0b1111n); // 0b1111n console.log(0b1010n ^ 0b1111n); // 0b0101n console.log(~0b1010n); // -11n console.log(0b1010n << 2n); // 0b101000n console.log(0b1010n >> 1n); // 0b101n console.log(0b1010n >>> 2n); // 0b10n
实战应用
下面通过一个简单的示例来展示 BigInt 类型的应用场景。
计算阶乘
通常,当数字很大时,计算其阶乘可能会超出 Number 类型的范围。假如我们需要计算 1000000 的阶乘,我们将会发现打开这个网页已经超时了,我们应该怎么办呢?
-- -------------------- ---- ------- -------- ------------ - --- ------ - --- --- ---- - - --- - -- -- ---- - ------ -- -- - ------ ------- - --------------------------------展开代码
我们可以使用 BigInt 类型将其实现。
总结
感谢 ES11 标准引入的 BigInt 类型,我们现在可以在 JavaScript 中轻松地进行对于大整数的计算。本文对该类型的语法、运算、转换等方面进行了详细的介绍,并给出了一个实际的应用示例。如果您在开发中遇到了大整数计算的问题,不妨尝试使用 BigInt 类型来解决。
来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/664c37afd3423812e4b08010