Any

Any is an aggregator that returns true if at least one element in a data set matches the criteria of the lambda expression.

JavaScript (Some)

var hasBrokenPencil = pencils.some((pencil) => {
    return pencil.isBroken;
});