Last active
January 21, 2023 18:12
-
-
Save slavafomin/7190cd633e1aa35cd62276fcb0448c89 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "foo": 123456789123456789123 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const object = JSON.parse('{ "foo": 123456789123456789123 }'); | |
console.log(object.foo); | |
// Outputs: 123456789123456800000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment