every(callback, thisp?)

Returns whether every entry in this collection passes a given test.

The given callback receives the value for each entry, the key or index, and the collection itself. every stops visiting entries upon reaching an entry for which the guard returns a falsy value, and returns false. Otherwise it will return true.

On collections

Usage

  • every(callback)
  • every(callback, thisp)

Example

var list = new List([2, 4, 6, 8]);
list.every(function (value) { return value % 2 === 0; });
list.every(function (value) { return value % 3 === 0 });

Related