Skip to content

Instantly share code, notes, and snippets.

@kbk0125
Last active July 19, 2016 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kbk0125/cd9ac1b8fa235ae648e3352845eaf8e4 to your computer and use it in GitHub Desktop.
Save kbk0125/cd9ac1b8fa235ae648e3352845eaf8e4 to your computer and use it in GitHub Desktop.
var brotherGift = packBox('jersey')
var motherGift = packBox('iTunesCard')
var fatherGift = packBox('golfclubs')
var sisterGift = packBox('lacrossestick')
brotherGift('123 Main Street, Anywhere USA 01234')
//Put jersey in the box
// Addressed the box to 123 Main Street, Anywhere USA 01234 and ready to send the jersey gift
motherGift('123 High Street, Los Angeles USA 01234')
//Put iTunesCard in the box
// Addressed the box to 123 High Street, Los Angeles USA 01234 and ready to send the iTunesCard gift
fatherGift('123 Upper East Street, New York City NY 01234')
//Put golfclubs in the box
// Addressed the box to 123 Upper East Street, New York City NY 01234 and ready to send the golfclubs gift
sisterGift('123 Top Street, Chicago IL 01234')
//Put lacrossestick in the box
// Addressed the box to 123 Top Street, Chicago IL 01234 and ready to send the lacrossestick gift
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment