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 source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
typedarray.every(callback[, thisArg])
callback
currentValue
The current element being processed in the typed array.
index
The index of the current element being processed in the typed array.
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
.
every
method executes the provided
callback
function once for each element present in the typed array until it finds one where
callback
返回
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.
若
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
箭头函数 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
| 规范 |
|---|
|
ECMAScript (ECMA-262)
The definition of 'TypedArray.prototype.every' in that specification. |
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
every
|
Chrome 45 | Edge 14 | Firefox 37 | IE No | Opera 36 | Safari No | WebView Android No | Chrome Android 45 | Firefox Android 37 | Opera Android No | Safari iOS No | Samsung Internet Android 5.0 | nodejs 4.0.0 |
完整支持
不支持
TypedArray
TypedArray.from()
TypedArray.of()
TypedArray.prototype.copyWithin()
TypedArray.prototype.entries()
TypedArray.prototype.every()
TypedArray.prototype.fill()
TypedArray.prototype.filter()
TypedArray.prototype.find()
TypedArray.prototype.findIndex()
TypedArray.prototype.forEach()
TypedArray.prototype.includes()
TypedArray.prototype.indexOf()
TypedArray.prototype.join()
TypedArray.prototype.keys()
TypedArray.prototype.lastIndexOf()
TypedArray.prototype.map()
TypedArray.prototype.reduce()
TypedArray.prototype.reduceRight()
TypedArray.prototype.reverse()
TypedArray.prototype.set()
TypedArray.prototype.slice()
TypedArray.prototype.some()
TypedArray.prototype.sort()
TypedArray.prototype.subarray()
TypedArray.prototype.toLocaleString()
TypedArray.prototype.toString()
TypedArray.prototype.values()
TypedArray.prototype[@@iterator]()
Int8Array
Uint8Array
Uint8ClampedArray
Int16Array
Uint16Array
Int32Array
Uint32Array
Float32Array
Float64Array
BigInt64Array
BigUint64Array
Function
Object
Object.prototype.__defineGetter__()
Object.prototype.__defineSetter__()
Object.prototype.__lookupGetter__()
Object.prototype.__lookupSetter__()
Object.prototype.hasOwnProperty()
Object.prototype.isPrototypeOf()
Object.prototype.propertyIsEnumerable()
Object.prototype.toLocaleString()
Object.prototype.toSource()
Object.prototype.toString()
Object.prototype.valueOf()
Object.setPrototypeOf()