The every()
method tests whether all elements in the typed array pass the test implemented by the provided function. This method has the same algorithm as Array.prototype.every()
. TypedArray is one of the typed array types here.
typedarray.every(callback[, thisArg])
callback
currentValue
index
array
every
was called upon.thisArg
this
when executing callback
.true
if the callback function returns a truthy value for every array element; otherwise, false
.
The every
method executes the provided callback
function once for each element present in the typed array until it finds one where callback
returns a falsy value (a value that becomes false when converted to a Boolean). If such an element is found, the every
method immediately returns false
. Otherwise, if callback
returned a true value for all elements, every
will return true
.
callback
is invoked with three arguments: the value of the element, the index of the element, and the array object being traversed.
If a thisArg
parameter is provided to every
, it will be passed to callback
when invoked, for use as its this
value. Otherwise, the value undefined
will be passed for use as its this
value. The this
value ultimately observable by callback
is determined according to the usual rules for determining the this
seen by a function.
every
does not mutate the typed array on which it is called.
The following example tests whether all elements in the typed array are bigger than 10.
function isBigEnough(element, index, array) { return element >= 10; } new Uint8Array([12, 5, 8, 130, 44]).every(isBigEnough); // false new Uint8Array([12, 54, 18, 130, 44]).every(isBigEnough); // true
Arrow functions provide a shorter syntax for the same test.
new Uint8Array([12, 5, 8, 130, 44]).every(elem => elem >= 10); // false new Uint8Array([12, 54, 18, 130, 44]).every(elem => elem >= 10); // true
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'TypedArray.prototype.every' in that specification. | Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262) The definition of 'TypedArray.prototype.every' in that specification. | Draft |
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 45 | ? | 37 | No | 36 | No |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | Opera Android | iOS Safari | Samsung Internet |
---|---|---|---|---|---|---|---|
Basic support | No | Yes | ? | 37 | No | No | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/every