For example if I have two objects:
var foo = { x: \"bar\", y: \"baz\" }
and
var oof = {}
and I want
This works in chrome 53.0.2785.89
let foo = { x: "bar", y: "baz" }; let oof = {x, y} = foo; console.log(`oof: ${JSON.stringify(oof)}); //prints oof: { "x": "bar", "y": "baz" }