mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
29 lines
557 B
Markdown
29 lines
557 B
Markdown
|
---
|
||
|
id: c0bfe9b7-f543-4f89-9661-94d8bb406ff7
|
||
|
title: JavaScript BigInt
|
||
|
---
|
||
|
|
||
|
# Description
|
||
|
|
||
|
`BigInt` can handle numbers larger than 9~007199254740991~.
|
||
|
|
||
|
# Syntax
|
||
|
|
||
|
``` javascript
|
||
|
const previouslyMaxSafeInteger = 9007199254740991n;
|
||
|
|
||
|
const alsoHuge = BigInt(9007199254740991);
|
||
|
// ↪ 9007199254740991n
|
||
|
|
||
|
const hugeString = BigInt("9007199254740991");
|
||
|
// ↪ 9007199254740991n
|
||
|
|
||
|
const hugeHex = BigInt("0x1fffffffffffff");
|
||
|
// ↪ 9007199254740991n
|
||
|
|
||
|
const hugeBin = BigInt(
|
||
|
"0b11111111111111111111111111111111111111111111111111111"
|
||
|
);
|
||
|
// ↪ 9007199254740991n
|
||
|
```
|