ES6多层解构

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

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

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

但请注意, personother是属于未定义的变量

参考ES6非常棒的特性-解构

posted @ 2019-03-20 21:24  xiaobe  阅读(9357)  评论(2编辑  收藏  举报