Skip to content

Instantly share code, notes, and snippets.

@cgrinaldi
Last active August 29, 2015 14:17
Show Gist options
  • Save cgrinaldi/0bc8166f9f0b71393382 to your computer and use it in GitHub Desktop.
Save cgrinaldi/0bc8166f9f0b71393382 to your computer and use it in GitHub Desktop.
A simple example of hosting with a function declaration
sayHello(); // logs 'Hello, world!'
function sayHello() {
console.log('Hello, world!');
}
// function has been hoisted to top of enclosing scope
function sayHello() {
console.log('Hello, world!');
}
sayHello(); // logs 'Hello, world!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment