const info = {
person: {
name: 'xiaobe',
other: {
age: 22,
}
},
song: 'rolling',
}
// 解構person的內容
const { person: { name, other: { age } } } = info;
// 解構song
const { song } = info;

但請注意, person和other是屬於未定義的變量
