Skip to content

Instantly share code, notes, and snippets.

@sevperez
Created August 1, 2018 16:06
Show Gist options
  • Save sevperez/3cd49dce75740e4ba2dec29b037b69d8 to your computer and use it in GitHub Desktop.
Save sevperez/3cd49dce75740e4ba2dec29b037b69d8 to your computer and use it in GitHub Desktop.
function schedulerMaker(name) {
return function(event) {
return function() {
console.log(event + " with " + name + ".");
};
};
}
var adaScheduler = schedulerMaker("Ada");
var coffeeWithAda = adaScheduler("Coffee");
coffeeWithAda(); // Logs: "Coffee with Ada."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment