var {one, two, three} = {one:1, two:2, three:3}
var x, y, z; ({x, y, z} = {x:1, y:2, z:3})
var {one:a, two:b, three:c} = {one:1, two:2, three:3}