Using this code :
fetch(\'notExists\') // <---- notice .then( function(response) { alert(response.status) } )
Use this code...
fetch(`https://fercarvo.github.io/apps/integradora/DB/corpus.json`) .then(async (data) => { if (data.ok) { data = await data.json() //Here you have your data... } }).catch(e => console.log('Connection error', e))