![]() |
The setInterval() method calls a function at specified intervals (in milliseconds). It continues calling the function until clearInterval() is called or the window is closed. This method is useful for tasks that need periodic execution, like updating animations or refreshing data. Important Note:
Syntax:setInterval(function, delay);
Return Value:Returns a Number which is basically the id of the timer. Example 1: Here,
Output: (Will be printed after 1 sec or 1000ms) Executing at regular intervals! Example 2: Here, we are using setInterval() method.
Output: After every second a new “hi” message will be displayed. Note: Since the setInterval() method executes the function infinitely hence there is a method called as clearInterval() to stop the execution of the setInterval(). Example 3: In this example, we will first execute a setInterval() function and then stop its execution by using the clearInterval() function.
Output: When the stop button is clicked the execution is stopped. |
Reffered: https://www.geeksforgeeks.org
JavaScript |
Related |
---|
![]() |
![]() |
![]() |
![]() |
![]() |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 19 |