How to show item from json Array

Hi, need little help. I have json in this format.

{
"title": "Example",
"content": "Lorem ipsum",
"img": [
"http://example.com/img.jpg"
]
}

And I can get title and content without problem with {{ item.title }} and {{ item.content }} but having trouble to get this img url. How to get value from that img array? And that array always have just one value.

does item.img[0] works?

1 Like

Yes that’s it, thank you!