let x = {a:123,b:234};
console.log(x);
Initializing...
delete x.a;
x = _.omit(x, ["a"]);
x.a = undefined;
You can edit these tests or add more tests to this page by appending /edit to the URL.