Array.any javascript code example
Example 1: js find array return true false
['one', 'two'].some(item => item === 'one')
['one', 'two'].some(item => item === 'three')
Example 2: javascript some
const age= [2,7,12,17,21];
age.some(function(person){
return person > 18;});
const age= [2,7,12,17,21];
age.some((person)=> person>18);
Example 3: javascript array some
let array = [1, 2, 3, 4, 5];
array.some(function(x) {
return x % 2 == 0;
});
Example 4: javascript some
const fruits = ['apple', 'banana', 'mango', 'guava'];
function checkAvailability(arr, val) {
return arr.some(function(arrVal) {
return val === arrVal;
});
}
checkAvailability(fruits, 'kela');
checkAvailability(fruits, 'banana');
Example 5: js object some
let obj = {"num1":1, "num2":2, "num3":3, "num4":4, "num5":5};
var firstEven = null;
Object.values(obj).some((item) => {
if (item == 2) {
firstEven = item;
}
return item % 2 == 0;
});
Example 6: js any array
Array.prototype.isEmpty = function() {
return this.length === 0;
}
Array.prototype.any = function(func) {
return this.some(func || function(x) { return x });
}