Files
30-seconds-of-code/snippets/delay.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

522 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
delay function,intermediate 2018-01-24T14:32:20+02:00 2020-10-19T18:51:03+03:00

Invokes the provided function after ms milliseconds.

  • Use setTimeout() to delay execution of fn.
  • Use the spread (...) operator to supply the function with an arbitrary number of arguments.
const delay = (fn, ms, ...args) => setTimeout(fn, ms, ...args);
delay(
  function(text) {
    console.log(text);
  },
  1000,
  'later'
); // Logs 'later' after one second.