Hyunju Seo

Results 1 issues of Hyunju Seo

안녕하세요 17. 프론트엔드 강의에서 `index.js`에 ```javascript (async()=>{ const url= 'http://localhost:8080/restaurants'; const response=await fetch(url); const restaurants = await response.json(); console.log(restaurants); const element=document.getElementById('app'); element.innerHTML=JSON.stringify(restaurants); }) ``` 를 했는데 화면에 정보가 나타나지 않고,...

done