How do I get all the values that are inside this foreach and show off it? It only takes the last one when I give ALERT:
var arrayAdicional = item.ingrediente_adicional.forEach(function(ingrediente)
{
prodadicional = ingrediente.ingrediente.nome;
return prodadicional;
})
alert(arrayAdicional);