Skip to content

Instantly share code, notes, and snippets.

@cgrinaldi
Created March 27, 2015 00:18
Show Gist options
  • Save cgrinaldi/929915b6ba656b4f2ea2 to your computer and use it in GitHub Desktop.
Save cgrinaldi/929915b6ba656b4f2ea2 to your computer and use it in GitHub Desktop.
A simple example of hoisting with function expressions
var myNumber = 2;
console.log(myNumber);
var myNumber; // this has been hoisted!
myNumber = 2;
console.log(myNumber);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment