every 함수
1. every( ) 함수
- 배열의 모든 요소가 주어진 조건을 만족하는지 확인하고 boolean 값을 반환
- 배열의 모든 요소가 조건을 충족할 때만, 'true'를 반환
- 조건을 만족하지 않는 요소가 있다면 'false'를 반환
2. 예시
// 모든 숫자가 짝수인지 확인
const numbers = [2, 4, 6, 8, 10];
const allEven = numbers.every(number => number % 2 === 0);
console.log(allEven); // true
// 모든 단어가 'a'로 시작하는지 확인
const words = ['apple', 'banana', 'cherry', 'watermelon'];
const allStartWithA = words.every(word => word.startsWith('a'));
console.log(allStartWithA); // false
'Front-End Study > JavaScript' 카테고리의 다른 글
findIndex 함수 (0) | 2023.08.25 |
---|---|
fill 함수 (0) | 2023.08.11 |
filter 함수 (0) | 2023.08.09 |
focus 함수 (0) | 2023.08.08 |
trim 함수 (0) | 2023.08.08 |