JavaScript Async/Await (비동기 함수와 실행 순서)
⇒ 이 문제를 해결하고자 등장한게 Async/Await! (Syntactic sugar) The async and await keywords enable asynchronous, promise-based behavior to be written in a cleaner style, avoiding the need to explicitly configure promise chains. (비동기적인 코드를 동기적으로 보이도록! 가독성 높아짐) async function name([param[, param[, ...param]]]) { statements } 이런식으로 앞에 async 키워드를 사용하면 된다.