About 265,000 results
Open links in new tab
  1. Window: setTimeout () method - Web APIs | MDN

    Dec 30, 2025 · The setTimeout () method of the Window interface sets a timer which executes a function or specified piece of code once the timer expires.

  2. Window setTimeout () Method - W3Schools

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

  3. JavaScript setTimeout () Method - GeeksforGeeks

    Jul 23, 2025 · JavaScript setTimeout() method allows you to schedule the execution of a function or the evaluation of a code after a specified delay. The setTimeout() method calls a function …

  4. Scheduling: setTimeout and setInterval

    Oct 3, 2022 · setTimeout allows us to run a function once after the interval of time. setInterval allows us to run a function repeatedly, starting after the interval of time, then repeating …

  5. JavaScript setTimeout () Method: Syntax, Usage, and Examples

    Learn how to use the JavaScript setTimeout () method to delay code execution, build timers, control async behavior, and manage UI interactions.

  6. Window setTimeout () Method

    Definition and Usage The setTimeout () method calls a function or evaluates an expression after a specified number of milliseconds. Tip: 1000 ms = 1 second. Tip: The function is only executed …

  7. JavaScript Window setTimeout () Method: Setting Timeout

    Feb 7, 2025 · A comprehensive guide to the JavaScript window.setTimeout () method, covering syntax, usage, examples, and best practices for setting timeouts.

  8. JavaScript Timers: setTimeout and setInterval Explained

    Jun 24, 2025 · setTimeout is a JavaScript function that lets you run some code once, after a set amount of time (in milliseconds). It’s like telling your code, “Wait for a bit, then do this.”

  9. Javascript setTimeout () - Programiz

    In this tutorial, you will learn about the JavaScript setTimeout () method with the help of examples.

  10. setTimeout () in JavaScript: Syntax, Uses, and Examples

    Nov 25, 2025 · The setTimeout JavaScript function allows us to delay the execution of a specific piece of code for a given amount of time. It helps us run functions after a certain delay instead …