What is the difference between setTimeout() and setInterval() in JavaScript?

王林
Release: 2023-09-01 15:01:07
forward
1192 people have browsed it

What is the difference between setTimeout() and setInterval() in JavaScript?

setTimeout(function,duration)- This function calls the function after duration milliseconds. This works for one execution. Let's see an example -

It waits for 2000 milliseconds and then runs the callback function alert('Hello') -

setTimeout(function() { alert('Hello');}, 2000);
Copy after login

setInterval(function,uration)- this function Calls thefunctionafter everydurationmilliseconds. This can be done an unlimited number of times. Let's see an example -

It triggers an alert ('Hello') every 2000 milliseconds, not just once.

setInterval(function() { alert('Hello');}, 2000);
Copy after login

The above is the detailed content of What is the difference between setTimeout() and setInterval() in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!