Results 181 - 200 of 885

Float64Array

The Float64Array typed array represents an array of 64-bit floating point numbers (corresponding to the C double 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).
Constructor JavaScript TypedArray TypedArrays

SIMD.Float64x2

The SIMD.Float64x2 data type is a 128-bit vector divided into 2 lanes storing double precision floating point values.
Experimental JavaScript SIMD

Function

The Function constructor creates a new Function object. In JavaScript every function is actually a Function object.
Constructor Function JavaScript

Function.prototype.apply()

The apply() method calls a function with a given this value and arguments provided as an array (or an array-like object).
Function JavaScript Method

Function.prototype.call()

The call() method calls a function with a given this value and arguments provided individually.
Function JavaScript Method

Function.caller

The function.caller property returns the function that invoked the specified function.
Function JavaScript Property

Function.displayName

The function.displayName property returns the display name of the function.
Function JavaScript Property

Function.prototype.isGenerator()

The isGenerator() method determines whether or not a function is a generator.
Function JavaScript Method

Function.length

The length property specifies the number of arguments expected by the function.
Function JavaScript Property

Function.name

The function.name property returns the name of the function.
ECMAScript6 Function JavaScript Property

Function.prototype

The Function.prototype property represents the Function prototype object.
Function JavaScript Property Prototype

Function.prototype.toSource()

The toSource() method returns a string representing the source code of the object.
Function JavaScript Method

Function.prototype.toString()

The toString() method returns a string representing the source code of the function.
Function JavaScript Method Prototype

Int16Array

The Int16Array typed array represents an array of twos-complement 16-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).
Constructor JavaScript TypedArray TypedArrays

SIMD.Int16x8

The SIMD.Int16x8 data type is a 128-bit vector divided into 8 lanes storing 16-bit signed integer values.
Experimental JavaScript SIMD

Int32Array

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).
Constructor JavaScript TypedArray TypedArrays

SIMD.Int32x4

The SIMD.Int32x4 data type is a 128-bit vector divided into 4 lanes storing 32-bit signed integer values.
Experimental JavaScript SIMD

SIMD.Int8x16

The SIMD.Int8x16 data type is a 128-bit vector divided into 16 lanes storing 8-bit signed integer values.
Experimental JavaScript SIMD

InternalError

The InternalError object indicates an error that occurred internally in the JavaScript engine. For example: "InternalError: too much recursion".
Error InternalError JavaScript

InternalError.prototype

The InternalError.prototype property represents the prototype of the InternalError constructor.
Error InternalError JavaScript Property