There is a condition where i need to convert Array of objects into Array of Arrays.
Example :-
arrayTest = arrayTest[10 objects inside this array]
single object has multiple properties which I add dynamically so I don't know the property name.
Now I want to convert this Array of objects into Array of Arrays.
P.S. If I know the property name of object then I am able to convert it. But i want to do dynamically.
Example (If I know the property name(firstName and lastName are property name))
var outputData = [];
for(var i = 0; i < inputData.length; i++) {
var input = inputData[i];
outputData.push([input.firstName, input.lastName]);
}
Use the
for-in
loopTry this:
Converts Array of objects into Array of Arrays:
var outputData = inputData.map( Object.values );