Shows the given message and waits for the enter key pressed.
Cancels a timed, repeating action which was previously started by a call
to setInterval()
Cancels a scheduled action initiated by setTimeout()
Shows the given message and waits for the answer. Returns the user's answer as boolean.
Shows the given message and waits for the user's input. Returns the user's input as string.
A microtask is a short function which is executed after the function or module which created it exits and only if the JavaScript execution stack is empty, but before returning control to the event loop being used to drive the script's execution environment. This event loop may be either the main event loop or the event loop driving a web worker.
Dispatch an uncaught exception. Similar to a synchronous version of:
Repeatedly calls a function , with a fixed time delay between each call.
Sets a timer which executes a function once after the delay (in milliseconds) elapses. Returns an id which may be used to cancel the timeout.
Creates a deep copy of a given value using the structured clone algorithm.
A controller object that allows you to abort one or more DOM requests as and when desired.
A signal object that allows you to communicate with a DOM request (such as a Fetch) and abort it if required via an AbortController object.
A typed array of 16-bit float values. The contents are initialized to 0. If the requested number of bytes could not be allocated an exception is raised.
Deno provides extra properties on import.meta
. These are included here
to ensure that these are still available when using the Deno namespace in
conjunction with other type libs, like dom
.
The location (URL) of the object it is linked to. Changes done on it are
reflected on the object it relates to. Accessible via
globalThis.location
.