Skip to content

Instantly share code, notes, and snippets.

@rishabhgupta
Last active March 31, 2018 12:07
Show Gist options
  • Save rishabhgupta/06921ed0fb442071018fc3d643a3f913 to your computer and use it in GitHub Desktop.
Save rishabhgupta/06921ed0fb442071018fc3d643a3f913 to your computer and use it in GitHub Desktop.
hoisting();
console.log(a);
var a = "hello hoisting";
function hoisting() {
console.log('hoisted function');
}
a = "value" // Assignment before decleration
var a; // Declaration
console.log(a);
hoisting();
console.log(a);
function hoisting() {
console.log('hoisting');
}
hoisting();
console.log(a);
function hoisting() {
console.log('hoisting');
}
a = "hoisting";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment