Skip to content

Instantly share code, notes, and snippets.

@mbcarruthers
Created June 8, 2017 20:28
Show Gist options
  • Save mbcarruthers/3434e8fc870cb363cbd7437dc928baaf to your computer and use it in GitHub Desktop.
Save mbcarruthers/3434e8fc870cb363cbd7437dc928baaf to your computer and use it in GitHub Desktop.
(function() {
var a = b = 3;
})();
console.log("a defined " + (typeof a != 'undefined'));
console.log("b defined " + (typeof b != 'undefined'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment