| Class | Description |
|---|---|
| AggregateError |
The AggregateError object represents an error when several errors need to be wrapped in a single error.
|
| ArrayBuffer |
The ArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer.
|
| DataView |
The DataView view provides a low-level interface for reading and writing multiple number types in a binary ArrayBuffer, without having to care about the platform's endianness.
|
| EvalError |
The EvalError object indicates an error regarding the global eval() function.
|
| Float32Array |
The Float32Array typed array represents an array of 32-bit floating point numbers (corresponding to
the C float data type) in the platform byte order.
|
| Float32Array.Entry | |
| 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.
|
| Float64Array.Entry | |
| Int16Array |
The Int16Array typed array represents an array of twos-complement 16-bit signed integers in the
platform byte order.
|
| Int16Array.Entry | |
| Int32Array |
The Int32Array() typed array constructor creates an array of twos-complement 32-bit signed integers in
the platform byte order.
|
| Int32Array.Entry | |
| Int8Array |
The Int8Array typed array represents an array of twos-complement 8-bit signed integers.
|
| Int8Array.Entry | |
| JsBoolean |
The Boolean object is an object wrapper for a boolean value.
|
| JsError |
Error objects are thrown when runtime errors occur.
|
| JsMap<K,V> |
The Map object holds key-value pairs and remembers the original insertion order of the keys.
|
| JsMap.Entry<K,V> | |
| JsNumber |
The Number constructor contains constants and methods for working with numbers.
|
| JsObject |
The Object class represents one of JavaScript's data types.
|
| JsSet<T> |
The Set object lets you store unique values of any type, whether primitive values or object references.
|
| JsUtil | |
| JsWeakMap<K,V> |
The WeakMap object is a collection of key/value pairs in which the keys are weakly referenced.
|
| JsWeakMap.Entry<K,V> | |
| JsWeakSet<T> |
The WeakSet object lets you store weakly held objects in a collection.
|
| ObjectPropertyEntry | |
| RangeError |
The RangeError object indicates an error when a value is not in the set or range of allowed values.
|
| ReferenceError |
The ReferenceError object represents an error when a variable that doesn't exist (or hasn't yet been initialized) in the current scope is referenced.
|
| RegExpResult | |
| SharedArrayBuffer |
The SharedArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer, similar to the ArrayBuffer object, but in a way that they can be used to create views on shared memory.
|
| SyntaxError |
The SyntaxError object represents an error when trying to interpret syntactically invalid code.
|
| TypeError |
The TypeError object represents an error when an operation could not be performed, typically (but not exclusively) when a value is not of the expected type.
|
| Uint16Array |
The Uint16Array typed array represents an array of 16-bit unsigned integers in the platform byte order.
|
| Uint16Array.Entry | |
| Uint32Array |
The Uint32Array typed array represents an array of 32-bit unsigned integers in the platform byte order.
|
| Uint32Array.Entry | |
| Uint8Array |
The Uint8Array typed array represents an array of 8-bit unsigned integers.
|
| Uint8Array.Entry | |
| 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; if you specify a non-integer,
the nearest integer will be set.
|
| Uint8ClampedArray.Entry | |
| URIError |
The URIError object represents an error when a global URI handling function was used in a wrong way.
|
| Annotation Type | Description |
|---|---|
| RegExpFlags |
Specifies the valid flag string for regexps.
|
| RegExpLanguage |
Specifies the valid flag string for regexps.
|