Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

check if all elements in array match a condition javascript

const isBelowThreshold = (currentValue) => currentValue < 40;

const array1 = [1, 30, 39, 29, 10, 13];

console.log(array1.every(isBelowThreshold));
// expected output: true
 
PREVIOUS NEXT
Tagged: #check #elements #array #match #condition #javascript
ADD COMMENT
Topic
Name
7+8 =