Skip to content

Instantly share code, notes, and snippets.

@Craga89
Last active October 8, 2015 16:48
Show Gist options
  • Save Craga89/3360337 to your computer and use it in GitHub Desktop.
Save Craga89/3360337 to your computer and use it in GitHub Desktop.
var, commas and equals - the fix
function pollute() {
var foo = 'uhoh',
bar = foo; // bar is in local scope, no pollution!
}
pollute(); // Execute the pollution..?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment