반응형
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
반응형
'개발정보' 카테고리의 다른 글
react splice (0) | 2023.07.07 |
---|---|
React : Parameter 'draft' implicitly has an 'any' type. (0) | 2023.07.07 |
React Hook "useState" cannot be called at the top level. React Hooks must be called in a React function component or a custom React Hook function (0) | 2023.07.05 |
Cannot find module 'style-components' or its corresponding type declarations. (0) | 2023.07.05 |
크롬 모바일모드 커서 사라짐 (0) | 2023.07.04 |