FrontendDeveloper.in

JavaScript Track Detail

What is the use of setInterval

The setInterval() method is used to call a function or evaluate an expression at specified intervals (in milliseconds). For example, let's log a message after 2 seconds using setInterval method,

setInterval(function () {
console.log("Good morning");
}, 2000);