Answers for "javascript 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
1

some js

[2, 5, 8, 1, 4].some(isBiggerThan10);  // false
[12, 5, 8, 1, 4].some(isBiggerThan10); // true
Posted by: Guest on December-05-2020

Code answers related to "javascript some"

Code answers related to "Javascript"

Browse Popular Code Answers by Language