Based on http://users.dickinson.edu/~braught/courses/cs131s99/Lessons/03-Out&Data.html, for readability, JavaScript uses scientific notation to display very large numbers (absolute value greater than or equal to 1021). For example, the write statement
document.write(1000000000000000000000000);
would produce the output 1e24
Can I avoid scientific notation display?
Thanks