const array = [] console.log(array.some((item) => item > 0)) // false console.log(array.every((item) => item > 0)) // true