Skip to content

Instantly share code, notes, and snippets.

@RobertFischer
Last active August 29, 2015 14:07
Show Gist options
  • Save RobertFischer/2d3a6c3fcee31548c744 to your computer and use it in GitHub Desktop.
Save RobertFischer/2d3a6c3fcee31548c744 to your computer and use it in GitHub Desktop.
Bad Hoisting "Fix"
var foo;
_.each(bars, function(it) {
foo = it.someProperty;
...
});
// foo is never used again
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment