I'm running some JS through googles closure compiler and noticed something about how it handles numbers. It seems that they are converted into something other than base 10 and I can't figure out what it is.

javascript:(function(){
 var x = 30000;
 console.log(x);
})();

Results in:

(function(){console.log(3E4)})();

How is 3E4 == 30000?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

It's callled Scientific notation, especially the "E notation" part is what you're after.

Basically, aEb === a * Math.pow(10, b) (though this would be a syntax error - a and b have to be literals, b even has to be an integer).

3 * Math.pow(10, 4) === 30000; // true

The 3 and 4 are just in base 10. This has little to do with bases in fact.

link|improve this answer
Makes sense - Do you have a JS reference for this? – hafichuk Dec 7 '11 at 21:13
1  
en.wikipedia.org/wiki/JavaScript_syntax#Number lists all of the accepted numeric formats. – hafichuk Dec 7 '11 at 21:25
feedback

The 3e4 is the same as "saying" 3 multiplied by 4 orders of magnitude, or a 3 with 4 zeros.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.