deno / 1.23.2 / ~ / clearinterval.html /

clearInterval

Cancels a timed, repeating action which was previously started by a call to setInterval()

const id = setInterval(() => {console.log('hello');}, 500);
// ...
clearInterval(id);
function clearInterval( id?: number) : void;
clearInterval( id?: number) : void

Parameters

id?: number optional

Return Type

void

© 2018–2022 the Deno authors
https://doc.deno.land/deno/stable/~/clearInterval