1. XMLHttpRequest를 이용한 JSON 데이터 요청 및 처리 let xhttp = new XMLHttpRequest();xhttp.onreadystatechange = function () { if (this.readyState === 4 && this.status === 200) { jsonProc(this); }};xhttp.open("GET", "./client.json", true);xhttp.send();function jsonProc(xhttp) { let json = JSON.parse(xhttp.responseText); let str = JSON.stringify(json); document.getElementById("de..