Skip to content

Instantly share code, notes, and snippets.

@tsmsogn
Created September 29, 2012 12:44
Show Gist options
  • Save tsmsogn/3803894 to your computer and use it in GitHub Desktop.
Save tsmsogn/3803894 to your computer and use it in GitHub Desktop.
JavaScript: Test of function
foo(); // foo
function foo() {
console.log('foo');
}
bar(); // TypeError: undefined is not a function
var bar = function() {
console.log('bar');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment