Skip to content

Instantly share code, notes, and snippets.

@smallpaes
Created June 16, 2019 10:36
Show Gist options
  • Save smallpaes/cb2793520be68636c02e4cd466e0818f to your computer and use it in GitHub Desktop.
Save smallpaes/cb2793520be68636c02e4cd466e0818f to your computer and use it in GitHub Desktop.
function displayStoreInfo({ name, employees, locations: { taipei, singapore, sanFrancisco } }) {
console.log(`You are looking for: ${name}`)
console.log(`It currently has ${employees} employees`)
console.log(`Location in Taipei: ${taipei}`)
console.log(`Location in Singapore: ${singapore}`)
console.log(`Location in San francisco: ${sanFrancisco}`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment