Skip to content

Instantly share code, notes, and snippets.

@obbaeiei
Last active July 23, 2018 15:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save obbaeiei/8d32bbe306bb9ca24356ff727ad66ec7 to your computer and use it in GitHub Desktop.
Save obbaeiei/8d32bbe306bb9ca24356ff727ad66ec7 to your computer and use it in GitHub Desktop.
asynchonous code
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