Answers for "array any javascript"

4

js find array return true false

['one', 'two'].some(item => item === 'one') // true
['one', 'two'].some(item => item === 'three') // false
Posted by: Guest on June-15-2020
8

javascript array some

let array = [1, 2, 3, 4, 5];

//Is any element even?
array.some(function(x) {
  return x % 2 == 0;
}); // true
Posted by: Guest on May-23-2020
3

javascript some

const fruits = ['apple', 'banana', 'mango', 'guava'];

function checkAvailability(arr, val) {
  return arr.some(function(arrVal) {
    return val === arrVal;
  });
}

checkAvailability(fruits, 'kela');   // false
checkAvailability(fruits, 'banana'); // true
Posted by: Guest on August-02-2020
1

javascript array any

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
Posted by: Guest on April-29-2021
0

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 });
}
Posted by: Guest on August-14-2020

Code answers related to "array any javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language