Skip to content

Instantly share code, notes, and snippets.

@travishen
Last active September 3, 2018 12:05
Show Gist options
  • Save travishen/de351f3e3aacc6c71a76211d71201a47 to your computer and use it in GitHub Desktop.
Save travishen/de351f3e3aacc6c71a76211d71201a47 to your computer and use it in GitHub Desktop.
function greet(whattosay) {
return function(name) {
consoel.log(whattosay + ' ' + name); // include variable whattosay by scope chain
}
}
greet('Hello')('John'); // 'Hello John'
var sayHi = greet('Hi');
sayHi('Tony'); // 'Hi Tony'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment