This file contains 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
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