Skip to content

Instantly share code, notes, and snippets.

@haingdc
Created January 30, 2018 10:07
Show Gist options
  • Save haingdc/0e685d41edebeb7ff6681832bb2f35f2 to your computer and use it in GitHub Desktop.
Save haingdc/0e685d41edebeb7ff6681832bb2f35f2 to your computer and use it in GitHub Desktop.
iife example
var a = 2;
(function foo(){
var a = 3;
console.log( a ); // 3
})();
console.log( a ); // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment