Jump to content
Tuts 4 You

Leaderboard

  1. gavz

    gavz

    Junior+


    • Points

      3

    • Posts

      23


  2. CodeExplorer

    CodeExplorer

    Team Member


    • Points

      3

    • Posts

      4,067


  3. khodam

    khodam

    Full Member


    • Points

      2

    • Posts

      82


  4. jackyjask

    jackyjask

    Full Member+


    • Points

      2

    • Posts

      1,273


Popular Content

Showing content with the highest reputation on 04/01/2025 in Posts

  1. Use async and await. // sleep time expects milliseconds async function sleep (time) { await new Promise((resolve) => setTimeout(resolve, time)); } window.addEventListener('load', async (event) => { await sleep(500); ...my code... });
    1 point
×
×
  • Create New...