About 57,700 results
Open links in new tab
  1. Window setTimeout () Method - W3Schools

    Description The setTimeout () method calls a function after a number of milliseconds. 1 second = 1000 milliseconds.

  2. Window: setTimeout () method - Web APIs | MDN

    Aug 11, 2026 · The setTimeout () method of the Window interface sets a timer which executes a function or specified piece of code …

  3. setTimeout () in JavaScript - GeeksforGeeks

    Jun 1, 2026 · The setTimeout () method in JavaScript is used to execute a function or a piece of code after a specified time delay. It …

  4. JavaScript Timers - W3Schools

    With repeated setTimeout (), the next delay begins after the current callback has finished. With setInterval (), the interval continues to …

  5. Scheduling: setTimeout and setInterval

    Feb 25, 2026 · setTimeout allows us to run a function once after the interval of time. setInterval allows us to run a function …

  6. what is setTimeOut () function in javascript? - Stack Overflow

    Dec 29, 2010 · The setTimeout () method allows you to execute a piece of code after a certain amount of time has passed. You can …

  7. JavaScript setTimeout

    In this tutorial, you will learn how to use the JavaScript setTimeout () that sets a timer and executes a callback function after the timer …

  8. Window setTimeout () Method

    Definition and Usage The setTimeout () method calls a function or evaluates an expression after a specified number of milliseconds. …

  9. JavaScript setTimeout () – How to Set a Timer in JavaScript or Sleep ...

    Apr 27, 2021 · The setTimeout () method allows you to execute a piece of code after a certain amount of time has passed. You can …

  10. JavaScript - setTimeout () Method

    In JavaScript, the setTimeout () is a global method that allows you to execute the function or a particular JavaScript code only once …