Float32Array()
The Float32Array()
typed array constructor creates a new
Float32Array
object, which is, an array of 32-bit floating point numbers
(corresponding to the C float
data type) 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).
Syntax
new Float32Array()
new Float32Array(length)
new Float32Array(typedArray)
new Float32Array(object)
new Float32Array(buffer)
new Float32Array(buffer, byteOffset)
new Float32Array(buffer, byteOffset, length)
Note:
Float32Array()
can only be constructed withnew
. Attempting to call it withoutnew
throws aTypeError
.
Parameters
See TypedArray
.
Exceptions
See TypedArray
.