๐Ÿ“šย Reference


๐Ÿ“œ Chapter


Reflect

Proxy

โ€ฃ

โ€ฃ

โ€ฃ

โ€ฃ

Built-in Object


BigInt


$$ Number <= 2^{53} -1 $$

const theBiggestInt = 9007199254740991n;

const alsoHuge = BigInt(9007199254740991);
// โ†ช 9007199254740991n

const hugeString = BigInt("9007199254740991");
// โ†ช 9007199254740991n

const hugeHex = BigInt("0x1fffffffffffff");
// โ†ช 9007199254740991n

const hugeBin = BigInt("0b11111111111111111111111111111111111111111111111111111");
// โ†ช 9007199254740991n

const bigint = 1234567890123456789012345678901234567890n;

const sameBigint = BigInt("1234567890123456789012345678901234567890");

const bigintFromNumber = BigInt(10); // 10n๊ณผ ๋™์ผํ•ฉ๋‹ˆ๋‹ค.