create array of ids from array of objects javascript code example
Example 1: get all the ids in an array of objects ts
array.map(s=>s.id)
Example 2: get all id from array of objects javascript
function getFields(input, field) {
var output = [];
for (var i=0; i < input.length ; ++i)
output.push(input[i][field]);
return output;
}
var result = getFields(objArray, "foo"); // returns [ 1, 3, 5 ]