Skip to content

Instantly share code, notes, and snippets.

@sdesalas
Created October 22, 2021 11:42
Show Gist options
  • Save sdesalas/b483f23d4470e3e70e65620ba244c853 to your computer and use it in GitHub Desktop.
Save sdesalas/b483f23d4470e3e70e65620ba244c853 to your computer and use it in GitHub Desktop.
// @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER
// @see https://en.wikipedia.org/wiki/Double-precision_floating-point_format
console.log(Number.MAX_SAFE_INTEGER);
const z = 4153000000000000000 + 99;
console.log(z);
console.log('Thats why.');
//
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment