k
Mon Sep 11 2023 12:37:41 GMT+0000 (Coordinated Universal Time)
Saved by
@artemhoriuk
#javascript
fetch('www.example.com/data')
.then((res) => {
if (!res.ok) {
throw new Error('Error' + res.status)
}
return res.json()
}).then((data) => {
console.log('Data', data)
}).catch((error) => {
console.error('Error', error)
})
content_copyCOPY
Comments