Node.js - Timers and Scheduling
Identify the problem in this code using recursive
setTimeout:
function repeat() {
setTimeout(() => {
console.log('Tick');
}, 1000);
repeat();
}
repeat();