restart timer in nodeJS timer code example
Example: how to reset settimeout in javascript
// Get a reference to the timeout and call wwindow.clearTimeout() on
// that refrence.
let timeoutHandle = window.setTimeout(...);
window.clearTimeout(timeoutHandle);