every() 메서드는 배열 안의 모든 요소가 주어진 판별 함수를 통과하는지 테스트합니다.
모든 조건이 맞으면 true 하나라도 조건에 맞지 않으면 false
const words = ['unique', 'uncanny', 'pique', 'oxymoron', 'guise'];
const interestingWords = words.filter((word) => {return word.length > 5});
console.log(interestingWords.every((word) => {return word.length > 5}));
'JAVASCRIPT' 카테고리의 다른 글
OBJECTS Methods (0) | 2020.06.25 |
---|---|
== ,=== 차이로 알수있는 것들 (0) | 2020.06.24 |
some () 예문 (0) | 2020.06.24 |
forEach() 예문 (0) | 2020.06.24 |
The .reduce() Method (0) | 2020.06.23 |