-1

When i try to log this number 11321144241322243122 into the console it always gets converted to this number 11321144241322244000. This happens in node.js and in the browser console.

1 Answers1

2

11321144241322243122 is bigger than Number.MAX_SAFE_INTEGER.

Instead, convert it to a BigInt:

console.log(BigInt("11321144241322243122").toString())

console.log(11321144241322243122)
Spectric
  • 30,714
  • 6
  • 20
  • 43