0. 오늘의 배울 것. 비동기 실행 코드에서 쓰이는 async 와 await 키워드에 대해 알아보자!! 이 키워드를 쓰지 않아도 비동기문을 쓸 수는 있지만, 이걸 쓰는 게 더 가시적으로 좋다. 잘 알아보고 활용하자. 1. async와 await async와 await를 쓰면 우리가 앞에서 쓴 fetch then 문보다 더 간단하게 쓸 수 있다. 우리가 이때껏 배운 코드 fetch("url") .then((response)=>response.text()); .then((result)=>{console.log(result);}); 위의 코드를 async await로 바꾸기 async function fetchAndPrint() { const response = await fetch("url"); const ..