Skip to content

Instantly share code, notes, and snippets.

@wolfieorama
Last active May 23, 2016 20:33
Show Gist options
  • Save wolfieorama/b27c9f36a6fd32a1b481d4889c9baee6 to your computer and use it in GitHub Desktop.
Save wolfieorama/b27c9f36a6fd32a1b481d4889c9baee6 to your computer and use it in GitHub Desktop.
function buildAirlineTicketMaker(tclass){
return function(name){
alert("Here is your flight ticket via the " + tclass + ".\n" +
"Welcome to luxury, " + name + "!");
}
}
var getFirstClassTicket = buildAirlineTicketMaker("First class");
var getBusinessClassTicket = buildAirlineTicketMaker("Business class");
var getEconomyClassTicket = buildAirlineTicketMaker("Economy class");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment