This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log("Start") | |
new Promise(function (resolve, reject) { | |
console.log("Start Promise"); | |
for (var i=0; i<10000; i++) { | |
// This loop is example for too much time task | |
} | |
console.log("End Promise"); | |
resolve("Callback after Promise"); | |
}) |