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]);
}
3 Answers 3
Converts Array of objects into Array of Arrays:
var outputData = inputData.map( Object.values );
1 Comment
unshift to insert into first position! Otherwise, perfect oneliner!Try this:
var output = input.map(function(obj) {
return Object.keys(obj).sort().map(function(key) {
return obj[key];
});
});
5 Comments
Object.keys(obj).sort()map creates a new array, where each item is the result of function applied to an item in the original arrayUse the for-in loop
var outputData = [];
for (var i in singleObject) {
// i is the property name
outputData.push(singleObject[i]);
}