run settimeout x times code example
Example 1: javascript interval fixed number of times
// This will be repeated 5 times with 1 second intervals:
setIntervalX(function () {
// Your logic here
}, 1000, 5);
Example 2: how to do a function after a set interval js
function sayHi() {
alert('Hello');
}
//Do a function at a set interval continuously
setTimeout(sayHi, 1000);
//Do a function once after a set interval
setTimeout(sayHi, 1000);