Skip to content

Instantly share code, notes, and snippets.

@alandotcom
Created December 23, 2014 17:31
Show Gist options
  • Select an option

  • Save alandotcom/ce5f35c81f9ec75cd01b to your computer and use it in GitHub Desktop.

Select an option

Save alandotcom/ce5f35c81f9ec75cd01b to your computer and use it in GitHub Desktop.
Function declaration vs. statement
a();
b();
var a = function() {
console.log("hello world");
};
function b() {
console.log("hello, again");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment