Here is an array of objects:
let array = [{ firstName: "John", lastName : "Doe", id:5566, weight: 70 },{ firstName: "Francis", lastName : "Max", id:5567, weight: 85 }];
I am looking to remove the properties "lastName" and "weight" for all objects in this array. Any suggestions on how to achieve this?