ES6基础之——解构对象Object Destructuring
作者:互联网
使用解构这种语法我们可以解构对象
例子:
function breakfast(){ return {dessert:'cake',drink:'tea',fruit:'apple'}; } let {dessert:dessert,drink:drink,fruit:fruit}=breakfast(); //cake tea apple
标签:ES6,Destructuring,对象,dessert,drink,解构,fruit,breakfast 来源: https://www.cnblogs.com/fe-cherrydlh/p/11007485.html