I have this code:
for(i=0; i<results.rows.length; i++){
$('.chips').material_chip({
data: [
{tag: results.rows.item(i).descricao},
]
});
}
results.rows.item(i).descricao
returns me some values ..
How do I save all of these values in a single variable?
EX: var exemplo = valor1, valor2...
, all the values it found in for
. Is it possible?