Sobes.tech
Back to tasks
Junior — Middle+
39

Создание полифила для метода Array.some()

Companies where asked:

Альфа-БанкАльфа-Банк
Get help with live coding in real time with Sobes Copilot
Task condition

Реализуйте полифил, который воспроизводит поведение встроенного метода Array.some().

// [2, 5, 8, 1, 4].some((el) => el > 10);  -------> false
// [12, 5, 8, 1, 4].some((el) => el > 10); -------> true

const some = () => {

}