1. XMLHttpRequest를 사용한 방법 // GET 요청 var xhr = new XMLHttpRequest(); xhr.open('GET', 'https://example.com/api/data', true); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var response = JSON.parse(xhr.responseText); console.log(response); } }; xhr.send(); // POST 요청 var xhr = new XMLHttpRequest(); xhr.open('POST', 'https://example.com/api/data', true); xhr..