Any is an aggregator that returns true if at least one element in a data set matches the criteria of the lambda expression.
Any
var hasBrokenPencil = pencils.some((pencil) => { return pencil.isBroken; });