Skip to content

Instantly share code, notes, and snippets.

@me-shaon
Last active November 14, 2017 14:59
Show Gist options
  • Save me-shaon/4af767bb7c775a5e60c49cfda175d556 to your computer and use it in GitHub Desktop.
Save me-shaon/4af767bb7c775a5e60c49cfda175d556 to your computer and use it in GitHub Desktop.
Javascript hoisting example for Medium article
function hoist() {
a = 10;
console.log(a); //this will print '10'
var a;
}
hoist();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment