Results 41 - 48 of 48

TypedArray.prototype.some()

The some() method tests whether some element in the typed array passes the test implemented by the provided function. This method has the same algorithm as Array.prototype.some(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.sort()

The sort() method sorts the elements of a typed array in place and returns the typed array. This method has the same algorithm as Array.prototype.sort(). TypedArray is one of the typed array types here.
ECMAScript6 JavaScript Method Prototype TypedArray TypedArrays

TypedArray.prototype.values()

The values() method returns a new Array Iterator object that contains the values for each index in the array.
ECMAScript6 Iterator JavaScript Method Prototype TypedArray TypedArrays

Uint16Array

The Uint16Array typed array represents an array of 16-bit unsigned integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).
Constructor JavaScript TypedArray TypedArrays Uint16Array

Uint8Array

The Uint8Array typed array represents an array of 8-bit unsigned integers. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).
Constructor JavaScript TypedArray TypedArrays Uint8Array

Uint8ClampedArray

The Uint8ClampedArray typed array represents an array of 8-bit unsigned integers clamped to 0-255; if you specified a value that is out of the range of [0,255], 0 or 255 will be set instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).
Constructor JavaScript TypedArray TypedArrays Uint8ClampedArray

TypedArray.prototype.entries()

The entries() method returns a new Array Iterator object that contains the key/value pairs for each index in the array.
ECMAScript6 Iterator JavaScript Method Prototype Reference TypedArray TypedArrays

TypedArray.prototype.keys()

The keys() method returns a new Array Iterator object that contains the keys for each index in the array.
ECMAScript6 Iterator JavaScript Method Prototype Reference TypedArray TypedArrays