TypeScript之解构赋值
Posted 沙滩海风
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeScript之解构赋值相关的知识,希望对你有一定的参考价值。
ES6 允许直接写入变量和函数,作为对象的属性和方法。这样的书写更加简洁。
let name = \'Pirates of the Caribbean\', index = 5, captain = { primary : \'Jack Sparrow\', secondary : \'Borbossa\' }; let film = { name, index, captain, desc(){ console.log(this.name + \' \' + this.index); } }
以上是关于TypeScript之解构赋值的主要内容,如果未能解决你的问题,请参考以下文章