简体   繁体   中英

ES6 iterative destructure

I was trying to create a array from an array of objects. I wanted to get the name of father from each object. For example:

var people = [
  {
    name: "Mike Smith",
    family: {
      father: "Harry Smith",
    }
  },
  {
    name: "Tom Jones",
    family: {
      father: "Richard Jones",
    }
  }
];

var fathers = [];
for (var {family: { father: f } } of people) {
  console.log("Father: " + f);
  father.push(f);
}

Is there anyway to do pouplate the fathers array from people without the loop in es6?

Use Array.prototype.map() with destructuring:

 const people = [ { name: "Mike Smith", family: { father: "Harry Smith", } }, { name: "Tom Jones", family: { father: "Richard Jones", } } ]; const fathers = people.map(({ family: { father }}) => father); console.log(fathers); 

Assign the values to fathers array at target of destructuring assignment. See also Destructure object properties inside array for all elements

 var people = [ { name: "Mike Smith", family: { father: "Harry Smith", } }, { name: "Tom Jones", family: { father: "Richard Jones", } } ]; var fathers = []; [{family:{father:fathers[0]}}, {family:{father:fathers[1]}}] = people; console.log(fathers); 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM