Skip to content

Instantly share code, notes, and snippets.

@Mahdhir
Created October 1, 2020 07:29
Show Gist options
  • Save Mahdhir/c3d3e134cbc14cce024dba422f40c435 to your computer and use it in GitHub Desktop.
Save Mahdhir/c3d3e134cbc14cce024dba422f40c435 to your computer and use it in GitHub Desktop.
let book = {
name: "Harry Potter 1",
price: {
value: 50,
currency: "EUR"
},
ISBN: "978-7-7058-9615-2",
weight: {
version1: {
value: 550,
unit: 'g'
},
version2: {
value: 690,
unit: 'g'
}
}
}
//Do something with book.weight.version2.value
console.log(book?.weight?.version2?.value);
//690
console.log(book?.weight?.version3?.value);
//undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment