





//fetch 호출하는 거 도와주는 내장함수
let response = fetch("https://jsonplaceholder.typicode.com/posts").then((res) =>
console.log(res)
);

async function getData() {
//fetch 호출하는 거 도와주는 내장함수
let rawResponse = await fetch("https://jsonplaceholder.typicode.com/posts");
let jsonResponse = await rawResponse.json();
console.log(jsonResponse);
}
getData();
