WEBAjaxAjax는 웹 브라우저에서 비동기 HTTP 요청을 보내기 위한 기술임XMLHttpRequest 객체를 사용해 요청을 보내고 그 응답을 받아 처리함하지만 코드가 복잡하고 콜백 함수로 인해 가독성이 떨어짐 Fetch Fetch는 더 간결하고 직관적인 문법을 제공하며Promise 기반으로 동작함.then(), .catch(), async/await 같은 문법을 통해 비동기 처리를 더 쉽게 할 수 있음fetch('요청url') .then(response => response.json()) // 응답을 JSON 형식으로 변환 .then(data => console.log(data)) // 데이터 처리 .catch(error => console.error('Error:', error));..