Below is the json data that'd I'd like destructure and extract just the title values.
[{
"id": 1,
"title": "Python Crash Course",
"author": "Eric Matthes",
"quantity": 5
},
{
"id": 2,
"title": "Head-First Python",
"author": "Paul Barry",
"quantity": 2
}
]
Getting specific properties of objects inside an array does not need destructuring. This can be done with Array.prototype.map:
If you really want to use destructuring, you could change the function provided to
map
to only select the title: