javascript async function getJsonFrom

 async function getJsonFrom(){

const response = await fetch(‘http://localhost/myfile.json’);
let json = await response.json();
}

Yorumlar