Is there anything like this in JavaScript? Basically, I'm looking for something along these lines:
let obj_a = {test: "one", property: "two"};
let obj_b = {test: "1", other: "three"};
let obj_b ...= obj_a; // would be the equivalent of obj_b = {...obj_b, ...obj_a}
Is there builtin syntax for something like that, or is this the best I'm going to get in ES6?