mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
574 B
574 B
date | id | title |
---|---|---|
2020-11-16 | c0bfe9b7-f543-4f89-9661-94d8bb406ff7 | JavaScript BigInt |
Description
BigInt
can handle numbers larger than 9007199254740991.
Syntax
const previouslyMaxSafeInteger = 9007199254740991n;
const alsoHuge = BigInt(9007199254740991);
// ↪ 9007199254740991n
const hugeString = BigInt("9007199254740991");
// ↪ 9007199254740991n
const hugeHex = BigInt("0x1fffffffffffff");
// ↪ 9007199254740991n
const hugeBin = BigInt(
"0b11111111111111111111111111111111111111111111111111111"
);
// ↪ 9007199254740991n