Created
March 28, 2021 20:40
-
-
Save nitayneeman/5c61736ce1fd9b3314f3223463b43711 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const bigintByNumber = BigInt(Number.MAX_SAFE_INTEGER + 1); | |
console.log(bigintByNumber); // 9007199254740992n | |
const bigintByString = BigInt('9007199254740992'); | |
console.log(bigintByString); // 9007199254740992n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment