Answers for "js some"

4

javascript some method

It just checks the array,
for the condition you gave,
if atleast one element in the array passes the condition
then it returns true
else it returns false
Posted by: Guest on September-26-2021
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
15

javascript some

const age= [2,7,12,17,21];

age.some(function(person){
return person > 18;}); //true

//es6
const age= [2,7,12,17,21];
age.some((person)=> person>18); //true
Posted by: Guest on June-12-2020
6

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
2

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 "Javascript"

Browse Popular Code Answers by Language