Need to console.log restaurant names from this object

Viewed 16

I want to console.log restaurant names from this object using the map function in react native

{ "data": { "id": 1, "attributes": { "title": "test", "description": "test1", "createdAt": "2022-09-05T17:29:21.396Z", "updatedAt": "2022-09-05T17:34:42.103Z", "publishedAt": "2022-09-05T17:29:22.294Z", "restaurants": { "data": [ { "id": 4, "attributes": { "name": "restaurant 4", "description": "restaurant 4", "createdAt": "2022-09-05T17:33:28.031Z", "updatedAt": "2022-09-05T17:33:28.607Z", "publishedAt": "2022-09-05T17:33:28.605Z", "long": 44, "lat": 24 } }, { "id": 5, "attributes": { "name": "restaurant 5", "description": "restaurant 5", "createdAt": "2022-09-05T17:34:04.310Z", "updatedAt": "2022-09-05T17:34:04.682Z", "publishedAt": "2022-09-05T17:34:04.678Z", "long": 89, "lat": 45 } } ] } } }, "meta": {} }

0 Answers
Related