9 lines
246 B
JavaScript
9 lines
246 B
JavaScript
const xhr = new XMLHttpRequest();
|
|
xhr.open("GET", "https://api.exemple.com/data", true);
|
|
xhr.onreadystatechange = function () {
|
|
if (xhr.readyState === 4 && xhr.status === 200) {
|
|
console.log(JSON.parse(xhr.responseText));
|
|
}
|
|
};
|
|
xhr.send();
|