My understanding of JavaScript "compilation" is that it condenses and minify's your code to ultimately save bytes.
Does either condensing or minification make javascript run any faster?
Take the following examples for consideration:
Un-condensed: var abcdefghijklmnopqrstuvwxyz = 1;
vs
Condensed var a = 1;
Un-minified
var b = function(){
// Here is a comment
// And another
// White space
return true;
}
vs
Minified
var b = function(){return true}
I ran these examples through JSPERF with little or no significant difference. http://jsperf.com/compilation-performance
Can compilation of JavaScript make it any faster or slower? (Apart from saving bytes)