Skip to content

Instantly share code, notes, and snippets.

@MatthaeusHarris
Created March 20, 2013 03:57
Show Gist options
  • Save MatthaeusHarris/5202199 to your computer and use it in GitHub Desktop.
Save MatthaeusHarris/5202199 to your computer and use it in GitHub Desktop.
wat
var a = [1, 2, 3, 4, 5];
var b = function() {
if (null) {
var a = [1, 2, 3];
}
console.log(a);
}
console.log(a);
b();
console.log(a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment