You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
306 B
JavaScript
17 lines
306 B
JavaScript
3 years ago
|
let lastIntervalId, counter = 5;
|
||
|
|
||
|
const greeting = delay => {
|
||
|
if (counter === 5) {
|
||
|
clearInterval(lastIntervalId);
|
||
|
lastIntervalId = setInterval(() => {
|
||
|
console.log('Hello World. ' + delay);
|
||
|
greeting(delay + 100);
|
||
|
}, delay);
|
||
|
counter = 0;
|
||
|
}
|
||
|
|
||
|
counter += 1;
|
||
|
};
|
||
|
|
||
|
greeting(100);
|