Skip to content

Instantly share code, notes, and snippets.

@emkay
Created November 8, 2011 04:52
Show Gist options
  • Save emkay/1347026 to your computer and use it in GitHub Desktop.
Save emkay/1347026 to your computer and use it in GitHub Desktop.
global antipattern
function sum(x, y) {
// antipattern: implied global
result = x + y;
return result;
}
function sum(x, y) {
var result = x + y;
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment