Skip to content

Instantly share code, notes, and snippets.

@kbk0125
Created October 22, 2018 23:56
Show Gist options
  • Save kbk0125/d569fc93436c4884f39510d0e38b6a61 to your computer and use it in GitHub Desktop.
Save kbk0125/d569fc93436c4884f39510d0e38b6a61 to your computer and use it in GitHub Desktop.
function packBox(item){
console.log('Put ' +item+ ' in the box');
function addressPackage(address){
console.log('Addressed the box to ' +address+' and ready to send the '+item+' gift');
}
return addressPackage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment