Bom dia como faço para o que vem da requisição a pareça no body html
return new Promise((resolve, reject) => {
let xhr = new XMLHttpRequest();
xhr.open('GET', 'https://reqres.in/api/users/2');
xhr.onreadystatechange = () => {
if(xhr.readyState == 4){
if(xhr.status == 200){
resolve(JSON.parse(xhr.responseText).data);
var conteudo_div = "";
conteudo_div += 'id:' + resolve.id + '<br>';
document.getElementById("div").innerHTML = conteudo_div;
}
}
}
xhr.send();
});