Fetching data asynchronous
Wed Jan 31 2024 17:07:05 GMT+0000 (Coordinated Universal Time)
Saved by
@ibukun
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")
content_copyCOPY
Comments