Q:

js some array

const age= [2,7,12,17,21];

age.some(function(person){
return person > 18;}); //true

//es6
const age= [2,7,12,17,21];
age.some((person)=> person>18); //true
10
['one', 'two'].some(item => item === 'one') // true
['one', 'two'].some(item => item === 'three') // false
4
let array = [1, 2, 3, 4, 5];

//Is any element even?
array.some(function(x) {
  return x % 2 == 0;
}); // true
4

array.some(function(currentValue, index, arr), thisValue)
-2

New to Communities?

Join the community