Skip to content

Instantly share code, notes, and snippets.

@ortichon
Last active May 28, 2017 09:35
Show Gist options
  • Save ortichon/8e30da76bb36eee1366802cc100e7ebf to your computer and use it in GitHub Desktop.
Save ortichon/8e30da76bb36eee1366802cc100e7ebf to your computer and use it in GitHub Desktop.
JavaScript Interview Question #2
foo();
var foo = function() {
console.log(false);
}
foo();
function foo() {
console.log(true);
}
foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment