W3cubDocs

/Deno

setTimeout

Sets a timer which executes a function once after the timer expires. Returns an id which may be used to cancel the timeout.

setTimeout(() => { console.log('hello'); }, 500);
function setTimeout(
cb: (...args: any[]) => void,
delay?: number,
...args: any[],
): number;
setTimeout(cb: (...args: any[]) => void, delay?: number, ...args: any[]): number

Parameters

cb: (...args: any[]) => void
delay?: number optional
...args: any[] optional

Return Type

number

© 2018–2021 the Deno authors
https://doc.deno.land/deno/stable/~/setTimeout