Skip to content

Instantly share code, notes, and snippets.

@kreshikhin
Last active August 29, 2015 13:55
Show Gist options
  • Save kreshikhin/8729118 to your computer and use it in GitHub Desktop.
Save kreshikhin/8729118 to your computer and use it in GitHub Desktop.
// warning! bad code style!
var z = a + b + c + d;
// correct way
var z = (function(){
return a + (function(){
return b + (function(){
return c + (function(){
return (function(){
return d;
})();
})();
})();
})();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment