cara mengatur ulang setTimeout di javascript
// Get a reference to the timeout and call wwindow.clearTimeout() on
// that refrence.
let timeoutHandle = window.setTimeout(...);
window.clearTimeout(timeoutHandle);
Unusual Unicorn