javascript is one of array code example
Example 1: javascript array some
let array = [1, 2, 3, 4, 5];
//Is any element even?
array.some(function(x) {
return x % 2 == 0;
}); // true
Example 2: some js es6
const array = [1, 2, 3, 4, 5];
// checks whether an element is even
const even = (element) => element % 2 === 0;
console.log(array.some(even));
// expected output: true
Example 3: see if array contains array javascript
const found = arr1.some(r=> arr2.indexOf(r) >= 0)