javascript delay output code example
Example 1: js timer wait before functoin
//code before the pause
setTimeout(function(){
//do what you need here
}, 2000);
Example 2: javascript wait 10 seconds
setTimeout(function () {
// ...
}, 10000);
// or
.then(() => {
// ...
({ timeout: 10000 });
});