let array = [1, 2, 3, 4, 5]; //Is any element even? array.some(function(x) { return x % 2 == 0; }); // true