Yogesh Chauhan's Blog

Window setInterval() Method in JavaScript

in JavaScript on March 3, 2021

Window.setInterval( ) method used to execute specified code periodically.

This method was introduced in JavaScript 1.2. It is related to setTimeout.

setInterval() Method Syntax

We can use either of the following syntaxes.

The first syntax:


window.setInterval(code, interval);

Where code is a string of JS code that you want to execute periodically. Make sure to add semicolons to separate multiple statements.

interval is an integer value in milliseconds.

The second syntax:


window.setInterval(function, interval, args...);

Where function(required) is nothing but JS code as a function. IE 4 and earlier versions don’t support this parameter.

In args parameters(optional) we can pass any number of parameters. Not supported in IE 9 and earlier versions.

What does it return?

Well the periodic execution has to stop. So, it returns a value that we can pass to Window.clearInterval( ) which then can be used to cancel the periodic execution of the supplied code or function.

setInterval() method Examples

This example prints yogeshchauhan.com every 3 seconds:

Let’s modify the example above to print the time as well. It will add the time to the string yogeshchauhan.com every 3 seconds.

How to stop setInterval() execution?

As we saw earlier, we can use clearInterval() to stop the execution.

Let’s use the same example to stop the execution.

We must use a variable when creating the interval method to stop the execution using the clearInterval() method.

Let’s create a variable in the same example above and add a stop button to stop the execution.

I used setInterval() and clearInterval() to create a progress bar in this post.

How to pass parameters in setInterval()?

Let’s pass few parameters in the example above.


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
4 different ways to create JavaScript ObjectsJavaScriptFunction Scope in JavaScript for BeginnersJavaScripttransform-origin Property in CSSCSSHow to apply style to a specific child element using CSS?CSSHow to create a Child Theme in WordPress?WordPressWhat is iFrame in HTML? Why do we need it?HTML