1It just checks the array,
2for the condition you gave,
3if atleast one element in the array passes the condition
4then it returns true
5else it returns false
1['one', 'two'].some(item => item === 'one') // true
2['one', 'two'].some(item => item === 'three') // false
1const age= [2,7,12,17,21];
2
3age.some(function(person){
4return person > 18;}); //true
5
6//es6
7const age= [2,7,12,17,21];
8age.some((person)=> person>18); //true
1let array = [1, 2, 3, 4, 5];
2
3//Is any element even?
4array.some(function(x) {
5 return x % 2 == 0;
6}); // true
1const fruits = ['apple', 'banana', 'mango', 'guava'];
2
3function checkAvailability(arr, val) {
4 return arr.some(function(arrVal) {
5 return val === arrVal;
6 });
7}
8
9checkAvailability(fruits, 'kela'); // false
10checkAvailability(fruits, 'banana'); // true
1let obj = {"num1":1, "num2":2, "num3":3, "num4":4, "num5":5};
2
3var firstEven = null;
4
5// Some returns a boolean value.
6Object.values(obj).some((item) => {
7 // Loop breaks as soon as the condition has been met.
8 // Getting your value, can be used like:
9 if (item == 2) {
10 firstEven = item;
11 }
12 return item % 2 == 0;
13}); // Results in true