Bryan Collazo Santiago
-
5 Tips to ADVANCE Compile Your Javascript
June 13, 2016
Javascript Minification One of the main techniques to keep websites lean and loading fast is to minify all the javascript using tools like the YUI Compressor, UglifyJS or Google’s Closure Compiler. These tools take perfectly readable javascript code: var bestFunctionEver = function(number) { return number + 1; }; bestFunctionEver(1); …and...