Skip to content

Instantly share code, notes, and snippets.

@thebopshoobop
Created July 31, 2017 02:55
Show Gist options
  • Save thebopshoobop/fc60e88f802fe2b0e6c4b364803289d0 to your computer and use it in GitHub Desktop.
Save thebopshoobop/fc60e88f802fe2b0e6c4b364803289d0 to your computer and use it in GitHub Desktop.
console.log(foo); // [Function: foo]
foo(); // 'bar'
function foo() {
console.log('bar');
}
console.log(baz); // undefined
baz(); // TypeError: baz is not a function
var baz = function() {
console.log('bar');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment