Node.js - Timers and Scheduling
What is wrong with this recursive
setTimeout implementation?
function repeat() {
setTimeout(repeat(), 1000);
console.log('Hi');
}
repeat();