Skip to content

Instantly share code, notes, and snippets.

@getify
Last active June 14, 2022 05:45
Show Gist options
  • Save getify/11336871 to your computer and use it in GitHub Desktop.
Save getify/11336871 to your computer and use it in GitHub Desktop.
JS scope/hoisting quiz
// Without cheating by running the code,
// what do these 3 result in?
function foo(a) {
a();
function a() {
console.log("yay");
}
}
foo(); // ??
foo( undefined ); // ??
foo( function(){ console.log("bam"); } ); // ??
@rizwankhan5174
Copy link

yay
yay
yay

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment