扫一扫分享
BigInt是一个新的原语,它提供了一种表示大于2的53次方整数的方法,这是Javascript可以用Number原语可靠地表示的最大数字。
const x = Number.MAX_SAFE_INTEGER;
// ↪ 9007199254740991, this is 1 less than 2^53
const y = x + 1;
// ↪ 9007199254740992, ok, checks out
const z = x + 2
// ↪ 9007199254740992, wait, that’s the same as above!
手机预览