-
Array.prototype.every()Study/JavaScript 2020. 5. 6. 11:40
every() 메서드는 배열 안의 모든 요소가 주어진 판별 함수를 통과하는지 테스트합니다.
참고: 빈 배열에서 호출하면 무조건 true를 반환합니다.
const isBelowThreshold = (currentValue) => currentValue < 40; const array1 = [1, 30, 39, 29, 10, 13]; console.log(array1.every(isBelowThreshold)); // expected output: true
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/every
'Study > JavaScript' 카테고리의 다른 글
getter와 setter 차이점 (0) 2020.05.07 Getters (0) 2020.05.06 arrow function ex. (0) 2020.05.02 Higher order function (0) 2020.05.02 What are other uses of functions as data? (0) 2020.05.02