some 메서드 사용 방법 Array.prototype.some Array.prototype.some(callback(currentElement, index)) find와 findIndex는 조건을 만족하는 값과 인덱스를 리턴했다면, some 메서드는 조건을 만족하는지에 대한 참/거짓 여부를 리턴합니다. 이번에도 배열에 5보다 큰 원소가 있는지 찾아봅시다. const array = [2, 4, 6, 8, 10]; console.log(array.some((el) => el > 3)); // ==> true