array.some javascript code example
Example 1: js find array return true false
['one', 'two'].some(item => item === 'one')
['one', 'two'].some(item => item === 'three')
Example 2: javascript some
const age= [2,7,12,17,21];
age.some(function(person){
return person > 18;});
const age= [2,7,12,17,21];
age.some((person)=> person>18);
Example 3: javascript array some
let array = [1, 2, 3, 4, 5];
array.some(function(x) {
return x % 2 == 0;
});
Example 4: javascript some
const fruits = ['apple', 'banana', 'mango', 'guava'];
function checkAvailability(arr, val) {
return arr.some(function(arrVal) {
return val === arrVal;
});
}
checkAvailability(fruits, 'kela');
checkAvailability(fruits, 'banana');
Example 5: js some
movies.some(movie => movie.year > 2015)
Example 6: some js
[2, 5, 8, 1, 4].some(isBiggerThan10);
[12, 5, 8, 1, 4].some(isBiggerThan10);