Answers for ".some method 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
2

js some

movies.some(movie => movie.year > 2015)
// Say true if in movie.year only one (or more) items are greater than 2015
// Say false if no items have the requirement (like and operator)
Posted by: Guest on January-06-2021

Code answers related to ".some method javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language