score:1

response.data[i].data

where i is the index of the array you wish to reach.

or:

response.data.map(o => console.log(o.data)) 

this will log the contents of the data object nested in the array that is nested within the outer data object.


Related Query

More Query from same tag