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.
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.
// Arrow function every((element) => { /* ... */ } ) every((element, index) => { /* ... */ } ) every((element, index, array) => { /* ... */ } ) // Callback function every(callbackFn) every(callbackFn, thisArg) // Inline callback function every(function(element) { /* ... */ }) every(function(element, index) { /* ... */ }) every(function(element, index, array){ /* ... */ }) every(function(element, index, array) { /* ... */ }, thisArg)
callbackFn
A function to test for each element.
The function is called with the following arguments:
element
The current element being processed in the typed array.
index
The index of the current element being processed in the typed array.
array
The typed array every
was called upon.
thisArg
Optional
A value to use as this
when executing callbackFn
.
true
if the callback function returns a truthy value for every array element; otherwise, false
.
The every
method executes the provided callbackFn
function once for each element present in the typed array until it finds the one where callbackFn
returns a falsy value. If such an element is found, the every
method immediately returns false
. Otherwise, if callbackFn
returns a truthy value for all elements, every
returns true
.
callbackFn
is invoked with three arguments: the value of the element, the index of the element, and the typed array object being traversed.
If a thisArg
parameter is provided to every
, it will be used as callback's this
value. Otherwise, the value undefined
will be used as its this
value. The this
value ultimately observable by callbackFn
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 9.
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
Desktop | Mobile | Server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | Deno | Node.js | |
every |
45 |
12 |
37 |
No |
32 |
9.1 |
No |
45 |
37 |
32 |
9.3 |
5.0 |
1.0 |
4.0.0 |
© 2005–2022 MDN 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