var btnbuscarPaciente = document.querySelector("#buscar-paciente"); btnbuscarPaciente.addEventListener("click",function(){ console.log("Buscando Pacientes");
var xhr = new XMLHttpRequest;
xhr.open("GET", "https://alura-es-cursos.github.io/api-pacientes/pacientes.json");
xhr.addEventListener("load", function(){
var errorAjax = dicument.querySelector("#error-ajax");
if(xhr.status == 200){
errorAjax.classlist.add("insvisible");
var respuesta = xhr.responseText;
//console.log(respuesta);
//console.log(typeof respuesta); //type of me devuelte el tipo de variable, string o numero
var paciente = JSON.parse(respuesta);
//console.log(paciente);
//console.log(typeof paciente);
paciente.forEach(function(paciente) {
adicionarPacienteEnLaTabla (paciente);
console.log(paciente);
});
} else{
console.log(xhr.status);
errorAjax.classlist.remove("insvisible");
}
})
xhr.send();
})