function countPositivesSumNegatives(input) {
// your code here
let positiveCount = 0;
let summOfNegativeCount = 0;
if (input.length === 0) {
return [];
}
input.forEach((el) => {
if (el > 0) {
positiveCount += 1;
}
if (el < 0) {
summOfNegativeCount -= -el;
}
});
return [positiveCount, summOfNegativeCount];
}
В инспекторе кода данные свойства перечёркнуты.