From 046382085f687946f908b6d17339315f1210cf13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Samuel=20Hern=C3=A1ndez?= Date: Wed, 28 Sep 2022 02:44:57 -0400 Subject: [PATCH] Add setImmediate function (#1902) * Update 107-set-immediate.md Node.js 107: setImmediate * Update 107-set-immediate.md Fixes in Markdown * Update 107-set-immediate.md * Update content/roadmaps/107-nodejs/content/104-nodejs-async-programming/107-set-immediate.md Co-authored-by: Kamran Ahmed --- .../104-nodejs-async-programming/107-set-immediate.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/107-set-immediate.md b/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/107-set-immediate.md index e951a60ab..26d5227eb 100644 --- a/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/107-set-immediate.md +++ b/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/107-set-immediate.md @@ -1 +1,7 @@ -# Set immediate \ No newline at end of file +# setImmediate + +The `setImmediate` function delays the execution of a function to be called after the current event loops finish all their execution. It's very similar to calling `setTimeout` with 0 ms delay. + +Free Content +Understanding setImmediate +Understanding setImmediate