Untitled
unknown
plain_text
2 years ago
341 B
2
Indexable
(() => { console.log("this is the start"); setTimeout(() => { console.log("Callback 1: this is a msg from call back"); }); // has a default time value of 0 console.log("this is just a message"); setTimeout(() => { console.log("Callback 2: this is a msg from call back"); }, 0); console.log("this is the end"); })();
Editor is loading...