Skip to content

Instantly share code, notes, and snippets.

@bmorelli25
Created July 6, 2017 14:30
Show Gist options
  • Save bmorelli25/ae3b3502ca9737ff955b290a46f818d9 to your computer and use it in GitHub Desktop.
Save bmorelli25/ae3b3502ca9737ff955b290a46f818d9 to your computer and use it in GitHub Desktop.
closure 2
function speak() {
var words = 'hi';
return function logIt() {
console.log(words);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment