Typescript会支持类似于CoffeeScript的解构分配吗?
foo = {x: 1, y: 2, z: 3}
{x, z} = foo
# which will yield
x == 1 && z == 3
答案 0 :(得分:5)
答案 1 :(得分:0)
是的,它现在从ES6开始提供支持。您可以在浏览器(支持ES6)控制台本身中测试代码,如下所示。
const user = {name: 'Robkuz', gender: 'Male', looks: 'Great'}
const {name, looks} = user;