const firstReq = new XMLHttpRequest();
firstReq.addEventListener("load", function () {
console.log("IT WORKED!!!");
});
firstReq.addEventListener("error", () => {
console.log("ERROR!!!!!!");
});
firstReq.open("GET", "https://swapi.dev/api/planets/");
firstReq.send();
console.log("Request Sent!");
const firstReq = new XMLHttpRequest();
firstReq.addEventListener("load", function () {
console.log("IT WORKED!!!");
});
firstReq.addEventListener("error", () => {
console.log("ERROR!!!!!!");
});
firstReq.open("GET", "https://swapi.dev/api/planets/");
firstReq.send();
console.log("Request Sent!");