math - What is JavaScript's Max Int? What's the highest Integer value a Number can go to without losing precision? - Stack Overflow - Dave's Blog

Search
My timeline on Mastodon

math - What is JavaScript's Max Int? What's the highest Integer value a Number can go to without losing precision? - Stack Overflow

2013 Feb 5, 11:23

In JavaScript numbers are 64bit floating point numbers which have 53 bits of mantissa. That means you can accurately represent [-2^53, 2^53] as integers in JavaScript. Aka [-9007199254740992, 9007199254740992].

PermalinkCommentsjavascript math integer technical programming
Older Entries Creative Commons License Some rights reserved.