Answers for "get all the ids in an array of objects"

0

get all the ids in an array of objects ts

array.map(s=>s.id)
Posted by: Guest on January-11-2021
0

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 ]
Posted by: Guest on January-21-2021

Code answers related to "get all the ids in an array of objects"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language