-
Notifications
You must be signed in to change notification settings - Fork 78
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is there a way to work with asynchronous code that have delay? For example, setTimeout() in javascript.
If i made a code inside the timeout and make the delay to be 2 seconds, all of the code just executed. Here is example code
console.log("before timeout");
setTimeout(() => {
console.log("inside timeout");
}, 2000);
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request