vote up 12 vote down star
3

As far as I can tell, these two pieces of javascript behave the same way:

Option A:

function myTimeoutFunction()
{
    doStuff();
    setTimeout(myTimeoutFunction, 1000);
}

myTimeoutFunction();

Option B:

function myTimeoutFunction()
{
    doStuff();
}

myTimeoutFunction();
setInterval(myTimeoutFunction, 1000);

Is there any difference? Which do you use and why?

flag

there's also the obvious difference that setTimeout requires that extra line of code to keep it propagating, which has the drawback of being a maintenance problem but the benefit of letting you change the period easily – annakata Apr 9 at 7:52

8 Answers

vote up 19 vote down check

The difference is subtle, I believe the setInterval code executes every 1000ms exactly, while the setTimeout waits 1000ms, runs the function, which takes some ms, then sets another timeout. So the wait period is actually greater than 1000ms.

link|flag
Andy had a similar suggestion. Hypothetically, does this mean that if the method takes more than 1000ms to execute, you can have more than one running simultaneously? – Damovisa Apr 8 at 13:21
Theoratically, yes. In practise, no since Javascript does not support multithreading. If your code takes longer than 1000ms, it will freeze the browser. – Kamiel Wanrooij Apr 8 at 13:26
Technically, the code wont execute exactly every 1000ms, since it depends on the resolution of the timer and whether other code is already executing. Your point still stands though. – Matthew Crumley Apr 8 at 13:39
Interesting... thanks guys. – Damovisa Apr 8 at 14:17
Note an interval can still be delayed or dropped if you're failing to service it in time (see below). – bobince Apr 8 at 20:14
vote up 1 vote down

I use setTimeout.

Apparently the difference is setTimeout calls the method once, setInterval calls it repeatdly.

Here is a good article explaining the difference: Tutorial: JavaScript timers with setTimeout and setInterval

link|flag
Yep, I got that difference, but the two pieces of code I've provided should then do the same thing... – Damovisa Apr 8 at 13:19
Ummm yes... I would have thought... but according to dcaunt and his vote count that's not quite what happens. – Bravax Apr 8 at 13:32
vote up 7 vote down

The setInterval makes it easier to cancel future execution of your code. If you use setTimeout, you must keep track of the timer id in case you wish to cancel it later on.

var timerId = null;
function myTimeoutFunction()
{
    doStuff();
    timerId = setTimeout(myTimeoutFunction, 1000);
}

myTimeoutFunction();

// later on...
clearTimeout(timerId);

versus

function myTimeoutFunction()
{
    doStuff();
}

myTimeoutFunction();
var timerId = setInterval(myTimeoutFunction, 1000);

// later on...
clearInterval(timerId);
link|flag
Nice, I didn't consider cancelling... – Damovisa Apr 8 at 13:28
vote up 0 vote down

I find the setTimeout method easier to use if you want to cancel the timeout:

function myTimeoutFunction() {
   doStuff();
   if (stillrunning) {
      setTimeout(myTimeoutFunction, 1000);
   }
}

myTimeoutFunction();

Also, if something would go wrong in the function it will just stop repeating at the first time error, instead of repeating the error every second.

link|flag
vote up 0 vote down

Both setInterval and setTimeout return a timer id that you can use to cancel the execution, that is, before the timeouts are triggered. To cancel you call either clearInterval or clearTimeout like this:

var timeoutId = setTimeout(someFunction, 1000);
clearTimeout(timeoutId);
var intervalId = setInterval(someFunction, 1000),
clearInterval(intervalId);

Also, the timeouts are automatically cancelled when you leave the page or close the browser window.

link|flag
vote up 2 vote down

If you would like some good details on how timers in JS work, John Resig wrote a good article on this topic

link|flag
vote up 16 vote down

Is there any difference?

Yes. A Timeout executes a certain amount of time after setTimeout() is called; an Interval executes a certain amount of time after the previous interval fired.

You will notice the difference if your doStuff() function takes a while to execute. For example, if we represent a call to setTimeout/setInterval with ‘.’, a firing of the timeout/interval with ‘*’ and JavaScript code execution with ‘[-----]’, the timelines look like:

Timeout:

.    *  .    *  .    *  .    *  .
     [--]    [--]    [--]    [--]

Interval:

.    *    *    *    *    *    *
     [--] [--] [--] [--] [--] [--]

The next complication is if an interval fires whilst JavaScript is already busy doing something (such as handling a previous interval). In this case, the interval is remembered, and happens as soon as the previous handler finishes and returns control to the browser. So for example for a doStuff() process that is sometimes short ([-]) and sometimes long ([-----]):

.    *    *    •    *    •    *    *
     [-]  [-----][-][-----][-][-]  [-]

• represents an interval firing that couldn't execute its code straight away, and was made pending instead.

So intervals try to ‘catch up’ to get back on schedule. But, they don't queue one on top of each other: there can only ever be one execution pending per interval. (If they all queued up, the browser would be left with an ever-expanding list of outstanding executions!)

.    *    •    •    x    •    •    x
     [------][------][------][------]

x represents an interval firing that couldn't execute or be made pending, so instead was discarded.

If your doStuff() function habitually takes longer to execute than the interval that is set for it, the browser will eat 100% CPU trying to service it, and may become less responsive.

Which do you use and why?

Chained-Timeout gives a guaranteed slot of free time to the browser; Interval tries to ensure the function it is running executes as close as possible to its scheduled times, at the expense of browser UI availability.

I would consider an interval for one-off animations I wanted to be as smooth as possible, whilst chained timeouts are more polite for ongoing animations that would take place all the time whilst the page is loaded. For less demanding uses (such as a trivial updater firing every 30 seconds or something), you can safely use either.

In terms of browser compatibility, setTimeout predates setInterval, but all browsers you will meet today support both, except for the utterly abysmal IE Mobile, which doesn't support setInterval. But then chances are it doesn't support anything else you're using either.

link|flag
That's an awesome answer - thanks heaps! – Damovisa Apr 9 at 0:36
But does the reason of choice between Interval and Timeout hold true even non-browser platforms, like for instance WebOS or JIL? – Vidhyashankar Nov 22 at 15:29
vote up 0 vote down

This article says that you should avoid setInterval if possible, especially since you can replicate its behavior with setTimeout and get some additional benefits along the way.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.