нужный обьект а потом undefined . Спасибо ! const wizardss = [
{
name: 'Harry Potter',
house: 'Gryfindor'
},
{
name: 'Tonks',
house: 'Hufflepuff'
}];
const pointss = {
HarryPotter: 500,
CedricDiggory: 750,
};
function getPoints(points, wizards) {
return wizards.reduce((arr, wizard, i) => {
const wizardName = wizard.name.split(" ").join('');
const helpArray = [];
if (points[wizardName]) {
const wizHouse = wizards[i].house;
const point = { wizHouse, earned: points[wizardName], i };
helpArray.push(point);
console.log(helpArray[i]); // вывидет первый обьект , а потом undefied . почему undefined ?
}
return arr;
}, []);
}
getPoints(pointss, wizardss);
Невнимательность
подскажешь?)
Между прочим wizards[i].house === wizard.house
Обсуждают сегодня