Is it possible to add multiple properties at once without overwriting the properties which are already inside object?
object = {prop1: "1", prop1: "2", prop3: "3"};
//Want to add: {prop4: "4", prop5: "5", prop6: "6"}
Is there any way to do this without iterating over the properties I want to add and adding one by one?