Skip to content

Instantly share code, notes, and snippets.

View mitoop's full-sized avatar

mitoop mitoop

  • 10:56 (UTC +08:00)
View GitHub Profile
@mitoop
mitoop / jsgo.md
Created December 18, 2023 05:16
Event Loop
console.log("1");

setTimeout(function () {
    console.log("2");
    new Promise(function (resolve) {
        console.log("3");
        resolve();
    }).then(function () {
 console.log("4");