Skip to content

Instantly share code, notes, and snippets.

@shisama
Created November 28, 2019 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shisama/322bb2fd08f20aa4c2937bdecba2d746 to your computer and use it in GitHub Desktop.
Save shisama/322bb2fd08f20aa4c2937bdecba2d746 to your computer and use it in GitHub Desktop.
console.log(2 ** 53)
// 9007199254740992
console.log(2 ** 53 + 1)
// 9007199254740992
console.log(2n ** 53n + 1n)
// 9007199254740993n
console.log(2n ** 53n * 1000n)
// 9007199254740992000n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment