5 lines
199 B
JavaScript
Raw Normal View History

2020-09-21 21:38:46 +01:00
// repeat with the interval of 2 seconds
let timerId = setInterval(() => console.log('tick'), 2000);
// after 5 seconds stop
setTimeout(() => { clearInterval(timerId); console.log('stop'); }, 5000);