0; i < arr.length; i++) {
for (let j = 0; j < arr[i].length; j++) {
arr[j].filter(function (current) {
return typeof current === number;
})
}
}
}
Подскажите как правильно вернуть весь 2-мерный массив после применения фильтрации?
return arr[j].filter(function (current) { return typeof current === number; })
Обсуждают сегодня