Last active
July 23, 2018 15:43
-
-
Save obbaeiei/8d32bbe306bb9ca24356ff727ad66ec7 to your computer and use it in GitHub Desktop.
asynchonous code
This file contains 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
function waitingForPrint5() { | |
setTimeout(() => { | |
console.log(5) // รอ 1 วิค่อยปริ้น 5 อธิบายต่อข้างล่างนะครับ | |
}, 1000) | |
} | |
function main() { | |
waitingForPrint5() // เมื่อมันทำงานบรรทัดนี้ยังไม่เสร็จตามต้องการ | |
// ยังไม่ Print 5 แต่สั่งไปแล้วนะให้ปริ้น | |
// แต่มันบอกไปก่อนเลยเพื่อนไม่ต้องรอ | |
console.log(6) | |
} | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment