ES6多層解構

const info = {
  person: {
    name: 'xiaobe',
    other: {
      age: 22,
    }
  },
  song: 'rolling',
}

// 解構person的內容
const { person: { name, other: { age } } } = info;

// 解構song
const { song } = info;

但請注意, personother是屬於未定義的變量code

參考ES6很是棒的特性-解構blog

相關文章
相關標籤/搜索