Boa tarde, como eu faço para que o json fiquei dentro de uma div?
class Teste {
static testeComAjax(){
let xhr = new XMLHttpRequest();
xhr.open('GET', 'https://reqres.in/api/users/2');
xhr.onreadystatechange = () => {
if(xhr.readyState == 4){
if(xhr.status == 200){
console.log(JSON.parse(xhr.responseText))
}
}
}
xhr.send();
}
}