const fetchData = async () => {
try {
const res = await fetch('https://api.example.com/data')
const data = await res.json()
} catch (error) {
console.error("error:", error)
}
console.log("end of async fetching data")
}
fetchData()
console.log("After Fetching data asynchronous")
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