The Int32Array
typed array represents an array of twos-complement 32-bit signed 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).
new Int32Array(); // new in ES2017 new Int32Array(length); new Int32Array(typedArray); new Int32Array(object); new Int32Array(buffer [, byteOffset [, length]]);
For more information about the constructor syntax and the parameters, see TypedArray.
Int32Array.BYTES_PER_ELEMENT
4
in the case of an Int32Array
.Int32Array.prototype.length
.Int32Array.name
Int32Array
type: "Int32Array".Int32Array.prototype
Int32Array.from()
Int32Array
from an array-like or iterable object. See also Array.from()
.Int32Array.of()
Int32Array
with a variable number of arguments. See also Array.of()
.Int32Array
prototypeAll Int32Array
objects inherit from %TypedArray%.prototype
.
Int32Array.prototype.constructor
Int32Array
constructor by default.Int32Array.prototype.buffer
Read only
ArrayBuffer
referenced by the Int32Array
Fixed at construction time and thus read only.Int32Array.prototype.byteLength
Read only
Int32Array
from the start of its ArrayBuffer
. Fixed at construction time and thus read only.
Int32Array.prototype.byteOffset
Read only
Int32Array
from the start of its ArrayBuffer
. Fixed at construction time and thus read only.
Int32Array.prototype.length
Read only
Int32Array
. Fixed at construction time and thus read only.
Int32Array.prototype.copyWithin()
Array.prototype.copyWithin()
.Int32Array.prototype.entries()
Array Iterator
object that contains the key/value pairs for each index in the array. See also Array.prototype.entries()
.Int32Array.prototype.every()
Array.prototype.every()
.Int32Array.prototype.fill()
Array.prototype.fill()
.Int32Array.prototype.filter()
Array.prototype.filter()
.Int32Array.prototype.find()
undefined
if not found. See also Array.prototype.find()
.Int32Array.prototype.findIndex()
Array.prototype.findIndex()
.Int32Array.prototype.forEach()
Array.prototype.forEach()
.Int32Array.prototype.includes()
true
or false
as appropriate. See also Array.prototype.includes()
.Int32Array.prototype.indexOf()
Array.prototype.indexOf()
.Int32Array.prototype.join()
Array.prototype.join()
.Int32Array.prototype.keys()
Array Iterator
that contains the keys for each index in the array. See also Array.prototype.keys()
.Int32Array.prototype.lastIndexOf()
Array.prototype.lastIndexOf()
.Int32Array.prototype.map()
Array.prototype.map()
.Int32Array.prototype.move()
Unimplemented
Int32Array.prototype.copyWithin()
.Int32Array.prototype.reduce()
Array.prototype.reduce()
.Int32Array.prototype.reduceRight()
Array.prototype.reduceRight()
.Int32Array.prototype.reverse()
Array.prototype.reverse()
.Int32Array.prototype.set()
Int32Array.prototype.slice()
Array.prototype.slice()
.Int32Array.prototype.some()
Array.prototype.some()
.Int32Array.prototype.sort()
Array.prototype.sort()
.Int32Array.prototype.subarray()
Int32Array
from the given start and end element index.Int32Array.prototype.values()
Array Iterator
object that contains the values for each index in the array. See also Array.prototype.values()
.Int32Array.prototype.toLocaleString()
Array.prototype.toLocaleString()
.Int32Array.prototype.toString()
Array.prototype.toString()
.Int32Array.prototype[@@iterator]()
Array Iterator
object that contains the values for each index in the array.Different ways to create an Int32Array
:
// From a length var int32 = new Int32Array(2); int32[0] = 42; console.log(int32[0]); // 42 console.log(int32.length); // 2 console.log(int32.BYTES_PER_ELEMENT); // 4 // From an array var arr = new Int32Array([21,31]); console.log(arr[1]); // 31 // From another TypedArray var x = new Int32Array([21, 31]); var y = new Int32Array(x); console.log(y[0]); // 21 // From an ArrayBuffer var buffer = new ArrayBuffer(16); var z = new Int32Array(buffer, 0, 4); // From an iterable var iterable = function*(){ yield* [1,2,3]; }(); var int32 = new Int32Array(iterable); // Int32Array[1, 2, 3]
Specification | Status | Comment |
---|---|---|
Typed Array Specification | Obsolete | Superseded by ECMAScript 2015. |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'TypedArray constructors' in that specification. | Standard | Initial definition in an ECMA standard. Specified that new is required. |
ECMAScript Latest Draft (ECMA-262) The definition of 'TypedArray constructors' in that specification. | Draft | ECMAScript 2017 changed the Int32Array constructor to use the ToIndex operation and allows constructors with no arguments. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 7 | Yes | 4 | 10 | 11.6 | 5.1 |
Int32Array() without new throws |
Yes | Yes | 44 | No | Yes | ? |
Iterable in constructor | ? | ? | 52 | ? | ? | ? |
Constructor without arguments | ? | ? | 55 | ? | ? | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 4 | Yes | Yes | 4 | 11.6 | 4.2 | Yes |
Int32Array() without new throws |
? | ? | ? | 44 | ? | ? | ? |
Iterable in constructor | ? | ? | ? | 52 | ? | ? | ? |
Constructor without arguments | ? | ? | ? | 55 | ? | ? | ? |
Server | |
---|---|
Node.js | |
Basic support | 0.10 |
Int32Array() without new throws |
0.12 |
Iterable in constructor | 4.0.0 |
Constructor without arguments | ? |
Starting with ECMAScript 2015, Int32Array
constructors require to be constructed with a new
operator. Calling a Int32Array
constructor as a function without new
, will throw a TypeError
from now on.
var dv = Int32Array([1, 2, 3]); // TypeError: calling a builtin Int32Array constructor // without new is forbidden
var dv = new Int32Array([1, 2, 3]);
© 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/Int32Array