<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<button onclick="ejecutarAjax()">Mostrar Datos</button></body>
<script>function ejecutarAjax(){}
var xmlhttp;
if(window.XMLHttpRequest){
xmlhttp=new XMLHttpRequest();
}else{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState==4 && xmlhttp.status==200){
let respuesta=JSON.parse(xmlhttp.responseText);
console.log(respuesta);
}
}
xmlhttp.open("GET","datos.json",true);
xmlhttp.send();
</script>
</html>
//datos.json
{
"nombre":"leonardo",
"edad":35
}