Skip to content

Instantly share code, notes, and snippets.

@sevperez
Created June 24, 2018 17:57
Show Gist options
  • Save sevperez/402952f6a3fa68d1cf1e89ca40bab280 to your computer and use it in GitHub Desktop.
Save sevperez/402952f6a3fa68d1cf1e89ca40bab280 to your computer and use it in GitHub Desktop.
function applicator(fn, val) {
return function() {
fn(val);
};
}
function speak(string) {
console.log(string);
}
var sayHello = applicator(speak, "Hello");
sayHello(); // logs "Hello";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment