deno / 1.23.2 / ~ / settimeout.html /

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–2022 the Deno authors
https://doc.deno.land/deno/stable/~/setTimeout