javascript array some
let array = [1, 2, 3, 4, 5];
//Is any element even?
array.some(function(x) {
return x % 2 == 0;
}); // true
javascript array some
let array = [1, 2, 3, 4, 5];
//Is any element even?
array.some(function(x) {
return x % 2 == 0;
}); // true
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
js object some
let obj = {"num1":1, "num2":2, "num3":3, "num4":4, "num5":5};
var firstEven = null;
// Some returns a boolean value.
Object.values(obj).some((item) => {
// Loop breaks as soon as the condition has been met.
// Getting your value, can be used like:
if (item == 2) {
firstEven = item;
}
return item % 2 == 0;
}); // Results in true
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us