Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nitayneeman/5c61736ce1fd9b3314f3223463b43711 to your computer and use it in GitHub Desktop.
Save nitayneeman/5c61736ce1fd9b3314f3223463b43711 to your computer and use it in GitHub Desktop.
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