const info = {
person: {
name: 'xiaobe',
other: {
age: 22,
}
},
song: 'rolling',
}
// 解构person的内容
const { person: { name, other: { age } } } = info;
// 解构song
const { song } = info;
但请注意, person
和other
是属于未定义的变量
const info = {
person: {
name: 'xiaobe',
other: {
age: 22,
}
},
song: 'rolling',
}
// 解构person的内容
const { person: { name, other: { age } } } = info;
// 解构song
const { song } = info;
但请注意, person
和other
是属于未定义的变量
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。