some and every array methods code example
Example 1: javascript every
const age= [2,7,12,17,21];
age.every(function(person){
return person>18;
}); //false
//es6
const age= [2,7,12,17,21];
age.every((person)=> person>18); //false
Example 2: 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