Tag Archives: Javascript

How to store numbers in Javascript

We know that all numbers in Javascript are stored in 64-bit format IEEE-754, also known as “double precision”,whatever the types int or float. When you see a number for example 0.1, actually not 0.1, it is (0.1).toPrecision(30) => 0.100000000000000005551115123126. The … Continue reading

Posted in Internet Technology | Tagged , , , , | Comments Off on How to store numbers in Javascript