Skip to content

Instantly share code, notes, and snippets.

@MacDada
Created December 31, 2012 04:09
Show Gist options
  • Save MacDada/4417296 to your computer and use it in GitHub Desktop.
Save MacDada/4417296 to your computer and use it in GitHub Desktop.
(function(window) {
// is calling a function on this "local" window faster
window.parseInt("17");
// then calling it as a global function?
parseInt("17");
})(window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment