Last active
April 12, 2016 01:30
-
-
Save wwalser/b28fb0dca9b40baa0916d63df7f0b315 to your computer and use it in GitHub Desktop.
non-minified vs minified
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var firstVar = 1; | |
var secondVar = "second"; | |
var identityFunc = firstArg => firstArg; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var a=1,b="second",c=function(a1){return a1;}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment