This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setInterval((function interval() { | |
// do something instantly then every 5 seconds | |
console.log('This is a better version of setInterval'); | |
return interval; | |
})(), 5000); |