All

All is an aggregator that returns true if and only if all the elements in the data set match the criteria of the lambda expression.

JavaScript (Every)

var allPencilsAreLarge = pencils.every((pencil) => {
    return pencil.size > 10
});