Liking cljdoc? Tell your friends :D

js.Array

The JavaScript Array object is a global object that is used in construction of arrays; which are high-level, list-like objects.

The JavaScript Array object is a global object that is used in
construction of arrays; which are high-level, list-like objects.
raw docstring

js.ArrayBuffer

The ArrayBuffer object is used to represent a generic, fixed-length binary data buffer.

The ArrayBuffer object is used to represent a generic, fixed-length
binary data buffer.
raw docstring

js.AsyncFunction

The AsyncFunction constructor creates a new async function In JavaScript every asynchronous function is actually an AsyncFunction

The AsyncFunction constructor creates a new `async function`
In JavaScript every asynchronous function is actually an AsyncFunction
raw docstring

js.Atomics

The Atomics object provides atomic operations as static methods. are used with js.SharedArrayBuffer objects.

The Atomics object provides atomic operations as static methods.
are used with `js.SharedArrayBuffer` objects.
raw docstring

js.BigInt

BigInt is a built-in object that provides a way to represent numbers larger than 253 - 1, which is the largest number JavaScript reliably represent with the js.Number primitive. BigInt can used for arbitrarily large integers.

BigInt is a built-in object that provides a way to represent
numbers larger than 253 - 1, which is the largest number JavaScript
reliably represent with the `js.Number` primitive. BigInt can
used for arbitrarily large integers.
raw docstring

js.BigInt64Array

The BigInt64Array typed array represents an array of 64-bit signed in the platform byte order. If control over byte order is needed, js.DataView instead. The contents are initialized to 0n. Once you can reference elements in the array using the object's methods, by using standard array index syntax (that is, using bracket

The BigInt64Array typed array represents an array of 64-bit signed
in the platform byte order. If control over byte order is needed,
`js.DataView` instead. The contents are initialized to 0n. Once
you can reference elements in the array using the object's methods,
by using standard array index syntax (that is, using bracket
raw docstring

js.BigUint64Array

The BigUint64Array typed array represents an array of 64-bit integers in the platform byte order. If control over byte order needed, use js.DataView instead. The contents are initialized 0n. Once established, you can reference elements in the array the object's methods, or by using standard array index syntax is, using bracket notation).

The BigUint64Array typed array represents an array of 64-bit
integers in the platform byte order. If control over byte order
needed, use `js.DataView` instead. The contents are initialized
0n. Once established, you can reference elements in the array
the object's methods, or by using standard array index syntax
is, using bracket notation).
raw docstring

js.Boolean

The Boolean object is an object wrapper for a boolean value.

The Boolean object is an object wrapper for a boolean value.
raw docstring

js.Collator

The Intl.Collator object is a constructor for collators, objects enable language sensitive string comparison.

The Intl.Collator object is a constructor for collators, objects
enable language sensitive string comparison.
raw docstring

js.core

js interfaces.

js interfaces.
raw docstring

No vars found in this namespace.

js.DataView

The DataView view provides a low-level interface for reading writing multiple number types in a binary js.ArrayBuffer, without to care about the platform's endianness.

The DataView view provides a low-level interface for reading
writing multiple number types in a binary `js.ArrayBuffer`, without
to care about the platform's endianness.
raw docstring

js.DateTimeFormat

The Intl.DateTimeFormat object is a constructor for objects that language-sensitive date and time formatting.

The Intl.DateTimeFormat object is a constructor for objects that
language-sensitive date and time formatting.
raw docstring

js.EvalError

The EvalError object indicates an error regarding the global function. This exception is not thrown by JavaScript anymore, the EvalError object remains for compatibility.

The EvalError object indicates an error regarding the global
function. This exception is not thrown by JavaScript anymore,
the EvalError object remains for compatibility.
raw docstring

js.Float32Array

The Float32Array typed array represents an array of 32-bit floating numbers (corresponding to the C float data type) in the platform order. If control over byte order is needed, use js.DataView The contents are initialized to 0. Once established, you can elements in the array using the object's methods, or using standard index syntax (that is, using bracket notation).

The Float32Array typed array represents an array of 32-bit floating
numbers (corresponding to the C float data type) in the platform
order. If control over byte order is needed, use `js.DataView`
The contents are initialized to 0. Once established, you can
elements in the array using the object's methods, or using standard
index syntax (that is, using bracket notation).
raw docstring

js.Float64Array

The Float64Array typed array represents an array of 64-bit floating numbers (corresponding to the C double data type) in the platform order. If control over byte order is needed, use js.DataView The contents are initialized to 0. Once established, you can elements in the array using the object's methods, or using standard index syntax (that is, using bracket notation).

The Float64Array typed array represents an array of 64-bit floating
numbers (corresponding to the C double data type) in the platform
order. If control over byte order is needed, use `js.DataView`
The contents are initialized to 0. Once established, you can
elements in the array using the object's methods, or using standard
index syntax (that is, using bracket notation).
raw docstring

js.Function

The Function constructor creates a new Function object. Calling constructor directly can create functions dynamically, but suffers security and similar (but far less significant) performance issues js.eval. However, unlike eval, the Function constructor creates which execute in the global scope only.

The Function constructor creates a new Function object. Calling
constructor directly can create functions dynamically, but suffers
security and similar (but far less significant) performance issues
`js.eval`. However, unlike eval, the Function constructor creates
which execute in the global scope only.
raw docstring

js.Generator

The Generator object is returned by a generator function and conforms to both the iterable protocol and the iterator protocol.

The Generator object is returned by a generator function and
conforms to both the iterable protocol and the iterator protocol.
raw docstring

js.GeneratorFunction

The GeneratorFunction constructor creates a new generator function In JavaScript every generator function is actually a GeneratorFunction

The GeneratorFunction constructor creates a new `generator function`
In JavaScript every generator function is actually a GeneratorFunction
raw docstring

js.Int16Array

The Int16Array typed array represents an array of twos-complement signed integers in the platform byte order. If control over byte is needed, use js.DataView instead. The contents are initialized 0. Once established, you can reference elements in the array the object's methods, or using standard array index syntax (that using bracket notation).

The Int16Array typed array represents an array of twos-complement
signed integers in the platform byte order. If control over byte
is needed, use `js.DataView` instead. The contents are initialized
0. Once established, you can reference elements in the array
the object's methods, or using standard array index syntax (that
using bracket notation).
raw docstring

js.Int32Array

The Int32Array typed array represents an array of twos-complement signed integers in the platform byte order. If control over byte is needed, use js.DataView instead. The contents are initialized 0. Once established, you can reference elements in the array the object's methods, or using standard array index syntax (that using bracket notation).

The Int32Array typed array represents an array of twos-complement
signed integers in the platform byte order. If control over byte
is needed, use `js.DataView` instead. The contents are initialized
0. Once established, you can reference elements in the array
the object's methods, or using standard array index syntax (that
using bracket notation).
raw docstring

js.Int8Array

The Int8Array typed array represents an array of twos-complement signed integers. The contents are initialized to 0. Once established, can reference elements in the array using the object's methods, using standard array index syntax (that is, using bracket notation).

The Int8Array typed array represents an array of twos-complement
signed integers. The contents are initialized to 0. Once established,
can reference elements in the array using the object's methods,
using standard array index syntax (that is, using bracket notation).
raw docstring

js.InternalError

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

The InternalError object indicates an error that occurred internally
the JavaScript engine. For example: \"InternalError: too much
raw docstring

js.Intl

The Intl object is the namespace for the ECMAScript Internationalization which provides language sensitive string comparison, number formatting, date and time formatting. The INTL object provides access to constructors as well as functionality common to the internationalization and other language sensitive functions.

The Intl object is the namespace for the ECMAScript Internationalization
which provides language sensitive string comparison, number formatting,
date and time formatting. The INTL object provides access to
constructors as well as functionality common to the internationalization
and other language sensitive functions.
raw docstring

js.JSON

The JSON object contains methods for parsing JavaScript Object (JSON) and converting values to JSON. It can't be called or constructed, aside from its two method properties, it has no interesting functionality its own.

The JSON object contains methods for parsing JavaScript Object
(JSON) and converting values to JSON. It can't be called or constructed,
aside from its two method properties, it has no interesting functionality
its own.
raw docstring

js.ListFormat

The Intl.ListFormat object is a constructor for objects that language-sensitive list formatting.

The Intl.ListFormat object is a constructor for objects that
language-sensitive list formatting.
raw docstring

js.Map

The Map object holds key-value pairs and remembers the original order of the keys.

The Map object holds key-value pairs and remembers the original
order of the keys.
raw docstring

js.Math

Math is a built-in object that has properties and methods for constants and functions. Not a function object.

Math is a built-in object that has properties and methods for
constants and functions. Not a function object.
raw docstring

js.Number

The Number JavaScript object is a wrapper object allowing you work with numerical values. A Number object is created using Number() constructor. A primitive type object number is created the Number() function.

The Number JavaScript object is a wrapper object allowing you
work with numerical values. A Number object is created using
Number() constructor. A primitive type object number is created
the Number() function.
raw docstring

js.NumberFormat

The Intl.NumberFormat object is a constructor for objects that language sensitive number formatting.

The Intl.NumberFormat object is a constructor for objects that
language sensitive number formatting.
raw docstring

js.PluralRules

The Intl.PluralRules object is a constructor for objects that plural sensitive formatting and plural language rules.

The Intl.PluralRules object is a constructor for objects that
plural sensitive formatting and plural language rules.
raw docstring

js.Promise

The Promise object represents the eventual completion (or failure) an asynchronous operation, and its resulting value.

The Promise object represents the eventual completion (or failure)
an asynchronous operation, and its resulting value.
raw docstring

js.Proxy

The Proxy object is used to define custom behavior for fundamental (e.g. property lookup, assignment, enumeration, function invocation,

The Proxy object is used to define custom behavior for fundamental
(e.g. property lookup, assignment, enumeration, function invocation,
raw docstring

js.RangeError

The RangeError object indicates an error when a value is not the set or range of allowed values.

The RangeError object indicates an error when a value is not
the set or range of allowed values.
raw docstring

js.ReferenceError

The ReferenceError object represents an error when a non-existent is referenced.

The ReferenceError object represents an error when a non-existent
is referenced.
raw docstring

js.Reflect

Reflect is a built-in object that provides methods for interceptable operations. The methods are the same as those of proxy handlers. is not a function object, so it's not constructible.

Reflect is a built-in object that provides methods for interceptable
operations. The methods are the same as those of proxy handlers.
is not a function object, so it's not constructible.
raw docstring

js.RelativeTimeFormat

The Intl.RelativeTimeFormat object is a constructor for objects enable language-sensitive relative time formatting.

The Intl.RelativeTimeFormat object is a constructor for objects
enable language-sensitive relative time formatting.
raw docstring

js.Set

The Set object lets you store unique values of any type, whether values or object references.

The Set object lets you store unique values of any type, whether
values or object references.
raw docstring

js.SharedArrayBuffer

The SharedArrayBuffer object is used to represent a generic, raw binary data buffer, similar to the js.ArrayBuffer object, in a way that they can be used to create views on shared memory. an ArrayBuffer, a SharedArrayBuffer cannot become detached.

The SharedArrayBuffer object is used to represent a generic,
raw binary data buffer, similar to the `js.ArrayBuffer` object,
in a way that they can be used to create views on shared memory.
an ArrayBuffer, a SharedArrayBuffer cannot become detached.
raw docstring

js.Symbol

The data type symbol is a primitive data type. The Symbol() function a value of type symbol, has static properties that expose several of built-in objects, has static methods that expose the global registry, and resembles a built-in object class but is incomplete a constructor because it does not support the syntax "new Symbol()".

The data type symbol is a primitive data type. The Symbol() function
a value of type symbol, has static properties that expose several
of built-in objects, has static methods that expose the global
registry, and resembles a built-in object class but is incomplete
a constructor because it does not support the syntax \"new Symbol()\".
raw docstring

js.SyntaxError

The SyntaxError object represents an error when trying to interpret invalid code.

The SyntaxError object represents an error when trying to interpret
invalid code.
raw docstring

js.TypedArray

A TypedArray object describes an array-like view of an underlying data buffer. There is no global property named TypedArray, nor there a directly visible TypedArray constructor. Instead, there a number of different global properties, whose values are typed constructors for specific element types, listed below. On the pages you will find common properties and methods that can be with any typed array containing elements of any type.

A TypedArray object describes an array-like view of an underlying
data buffer. There is no global property named TypedArray, nor
there a directly visible TypedArray constructor. Instead, there
a number of different global properties, whose values are typed
constructors for specific element types, listed below. On the
pages you will find common properties and methods that can be
with any typed array containing elements of any type.
raw docstring

js.TypeError

The TypeError object represents an error when a value is not the expected type.

The TypeError object represents an error when a value is not
the expected type.
raw docstring

js.Uint16Array

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

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

js.Uint32Array

The Uint32Array typed array represents an array of 32-bit unsigned in the platform byte order. If control over byte order is needed, js.DataView instead. The contents are initialized to 0. Once you can reference elements in the array using the object's methods, using standard array index syntax (that is, using bracket notation).

The Uint32Array typed array represents an array of 32-bit unsigned
in the platform byte order. If control over byte order is needed,
`js.DataView` instead. The contents are initialized to 0. Once
you can reference elements in the array using the object's methods,
using standard array index syntax (that is, using bracket notation).
raw docstring

js.Uint8Array

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

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

js.Uint8ClampedArray

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

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

js.URIError

The URIError object represents an error when a global URI handling was used in a wrong way.

The URIError object represents an error when a global URI handling
was used in a wrong way.
raw docstring

js.WeakMap

The WeakMap object is a collection of key/value pairs in which keys are weakly referenced. The keys must be objects and the can be arbitrary values.

The WeakMap object is a collection of key/value pairs in which
keys are weakly referenced. The keys must be objects and the
can be arbitrary values.
raw docstring

js.WeakSet

The WeakSet object lets you store weakly held objects in a collection.

The WeakSet object lets you store weakly held objects in a collection.
raw docstring

js.WebAssembly

The WebAssembly JavaScript object acts as the namespace for all functionality.

The WebAssembly JavaScript object acts as the namespace for all
functionality.
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close