Will Typescript support destructuring assignments similar to CoffeeScript?
foo = {x: 1, y: 2, z: 3}
{x, z} = foo
# which will yield
x == 1 && z == 3
Will Typescript support destructuring assignments similar to CoffeeScript?
foo = {x: 1, y: 2, z: 3}
{x, z} = foo
# which will yield
x == 1 && z == 3
Yes, it will.
See this issue in their bug tracker: http://typescript.codeplex.com/workitem/15
UPDATE: This is now supported.