#9 async & await - 직관적인 비 동기 처리 코드 작성하기 : Promise를 더 쉽게 이용할 수 있도록 도와줌function hello() { return "hello"; } async function helloAsync() { return "hello async"; } console.log(hello()); //hello console.log(helloAsync()); helloAsync().then((res) => { console.log(res); }) //hello async function delay(ms) { return new Promise((resolve) => { setTimeout(() => { resolve(..