I have a following consoled list of array how can i display the list?
I tried
this.item = this.data.["0"] // this is throwing an error
//Also i tried
this.item = this.data[0]
console.log(this.item) //Shows the output as Undefined
how can I achieve this?