javascript + create an array from another array of objects with only few properties code example
Example: javascript set property for each object in array of objects
let yourArray = [{id:3},{id:2},{id:4}]
yourArray.forEach((item, index) => {
item.id = index
})