var i = 20040115102010000;
i++;
returns 20040115102010000;
Do I have to use a Big Number Library?
What is the standard solution in JavaScript for handling big numbers (BigNum)?
This number was already in floating point format and I moved the decimal place to the left three times. Also, notice, it is a date. Would it behoove me to convert this number to a date format first? Will I find it easier to increment in milliseconds in the Date()
object?