// async & await
const getTodos = async () => {
let response = await fetch('json/luigi.json');
if(response.status !== 200){
throw new Error('cannot fetch the data');
}
let data = await response.json();
return data;
};
getTodos()
.then(data => console.log('resolved:', data))
.catch(err => console.log('rejected:', err.message)); //here err.message
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter