Skip to content

Instantly share code, notes, and snippets.

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