w3resource

JavaScript: Invokes the provided function after wait milliseconds

JavaScript fundamental (ES6 Syntax): Exercise-245 with Solution

Write a JavaScript program that invokes the provided function after a few milliseconds.

  • Use setTimeout() to delay execution of fn.
  • Use the spread (...) operator to supply the function with an arbitrary number of arguments.

Sample Solution:

JavaScript Code:

//#Source https://bit.ly/2neWfJ2 
// Define a function 'delay' to execute a function after a specified delay
const delay = (fn, wait, ...args) => setTimeout(fn, wait, ...args);

// Call the 'delay' function with a function to be executed, a delay of 1000ms, and additional arguments
delay(
  function(text) {
    console.log(text);
  },
  1000,
  'later'
);

Output:

later

Flowchart:

flowchart: Invokes the provided function after wait milliseconds.

Live Demo:

See the Pen javascript-basic-exercise-245-1 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript program to get the difference between two given arrays.
Next: Write a JavaScript program to convert an given angle from degrees to radians.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.