Skip to content

Instantly share code, notes, and snippets.

@krzysztofczernek
Last active October 12, 2018 14:33
Show Gist options
  • Save krzysztofczernek/a6ad486d5075c609dbc74dd3a4ef422d to your computer and use it in GitHub Desktop.
Save krzysztofczernek/a6ad486d5075c609dbc74dd3a4ef422d to your computer and use it in GitHub Desktop.
function makeGreeter (greeting) {
return function greet (name) {
return `${greeting}, ${name}!`
}
}
// or, using the ES6 syntax:
const makeGreeter = greeting => name => `${greeting}, ${name}!`
const greet = makeGreeter('Hello')
console.log(greet('Krzysztof'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment