Skip to content

Instantly share code, notes, and snippets.

@pihamchi
Created June 16, 2022 06:57
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 pihamchi/c168c5afcd9e6b118f0a2e60cd874dc7 to your computer and use it in GitHub Desktop.
Save pihamchi/c168c5afcd9e6b118f0a2e60cd874dc7 to your computer and use it in GitHub Desktop.
비동기 처리 예제
// https://joshua1988.github.io/web-development/javascript/javascript-asynchronous-operation/
// #1
console.log('Hello');
// #2
setTimeout(function() {
console.log('Bye');
}, 3000);
// #3
console.log('Hello Again');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment