Hello, let's say I have an object that has the following values
var json = [
{"nome":"Coisa A", qtd:2},
{"nome":"Coisa A", qtd:3},
{"nome":"Coisa B", qtd:5},
{"nome":"Coisa B", qtd:7}
]
Well, I can return these values to display in a list with the angle, I wanted to display in the html thus, adding the "qtd" and holding only a name the same way below.
Coisa A possui 5
Coisa B possui 12