I am fetching data from Yelp Api and I am trying to access nested array but I can not .
function categories (){
props.RestaurantsData.forEach((element,index) => {
console.log(element.categories)
});
I get response like this.
Array [
Object {
"alias": "seafood",
"title": "Seafood",
},
Object {
"alias": "burgers",
"title": "Burgers",
},
Object {
"alias": "newamerican",
"title": "American (New)",
},
]
when I try categories.title
. I keep getting undefined
. How can I access all the titles ?