I created an array:
var tagListArray = [];
for(i = 0; i<resultados.item(i); i++){
tagListArray = ["valor1", "valor2"];
}
console.log(tagListArray);
This resultados.item(i)
returns me values, how do I add them to the array?
I did so to test:
var tagListArray = ["Maçã", "Banana"];
var data = new Object({data:[]});
var index;
for(index = 0; index < results.rows.length; index++) {
alert(results.rows.item(index).descricao);
data.data.push({
tag: tagListArray[index]
});
};
But in the tagListArray I want the values to be filled with what the loopback returns.