How do I convert an array of objects to an array of arrays in javascript? I did this, but it returns an array of objects
var items1 = new Array();
$.map(objResposta, function(value,index) {
teste = new Array();
items1.push(val...
asked on
19.12.2016 / 13:45