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.
Asked
Active
Viewed 91 times
-1

user15048106
- 11
- 3
1 Answers
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