Last active
May 23, 2016 20:33
-
-
Save wolfieorama/b27c9f36a6fd32a1b481d4889c9baee6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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