const evenLast = numbers => numbers.reduce((acc, item, i) => !(i % 2) ? acc + item : acc, 0) * numbers[numbers.length - 1] || 0; console.log(evenLast([2, 3, 4, 5]));
https://codepen.io/Innoel/pen/qBrydxr?editors=0012 ну или вот просто поправленное нужно length - 1 и нужно учесть, что массив пустой
Обсуждают сегодня