Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save justin-lyon/e5746dcf5eb2dfce4ebda68c911c4e29 to your computer and use it in GitHub Desktop.
Save justin-lyon/e5746dcf5eb2dfce4ebda68c911c4e29 to your computer and use it in GitHub Desktop.

functional expression

notHoisted(); // TypeError: notHoisted is not a function

var notHoisted = function() {
	console.log('bar');
};

functional declaration

hoisted(); // logs "foo"

function hoisted() {
	console.log('foo');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment