Skip to content

Home

How delays work in JavaScript timing functions

JavaScript provides two widely used timing functions, setTimeout() and setInterval(). Both of these functions execute a specified function after a given amount of time either once or repeatedly. While this is straightforward, many people don't realize that the delay is merely a suggestion and can be altered by a number of factors.

Delays are not exact

I went into detail about how JavaScript engines execute code in the Event Loop explanation, but let me recap here. As JavaScript is single-threaded, tasks are queued to be executed in a loop. Thus, setTimeout() and setInterval() are tasks that will be executed after at least the given amount of time has elapsed. There is no guarantee, however, that the task will be executed exactly after the given amount of time has elapsed. The delay is a suggestion, signifying the minimum amount of time that must pass before the task is executed. The actual delay can be longer, depending on the current state of the JavaScript engine.

Browser factors

Apart from engine-related delays, there are a few other factors that play a role in the actual delay of a task. Briefly, these are:

On a side note, some browsers store delays as a 32-bit signed integer, meaning that delays over 24.8 days will cause an overflow and execute immediately.

More like this

Start typing a keyphrase to see matching snippets.