Skip to content

Instantly share code, notes, and snippets.

@rbren
Last active September 25, 2017 18:41
Show Gist options
  • Save rbren/f861fc666489cca4942015048e1be2b0 to your computer and use it in GitHub Desktop.
Save rbren/f861fc666489cca4942015048e1be2b0 to your computer and use it in GitHub Desktop.
api.getItem(1)
.then(item => {
delete item.owner;
console.log(item.owner.name);
})
.catch(e => {
console.log(e); // Cannot read property 'name' of undefined
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment