.any() js code example
Example 1: javascript every method
// array.every(function(elemnt)) method takes in a function
// which evaulates each elment
// The every method is designed to check if all the elements
// in an array meet a specific condition
// This condition is defined within your function
let numbers = [1, 2, 3, 42, 3, 2, 4, -1];
let allPassed = numbers.every(function(element){
return element > 0;
});
// This method returns a Boolean value
// allPassed is set to false because not all elements were greater than 0
Example 2: javascript array some
let array = [1, 2, 3, 4, 5];
//Is any element even?
array.some(function(x) {
return x % 2 == 0;
}); // true
Example 3: js any array
// There's no isEmpty or any method.
// You can define your own .isEmpty() or .any()
Array.prototype.isEmpty = function() {
return this.length === 0;
}
Array.prototype.any = function(func) {
return this.some(func || function(x) { return x });
}