Last active
May 23, 2016 20:33
-
-
Save wolfieorama/86014908d1bf0cda52b5baa40f7828bb 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 + "!"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment