DEV Community

Discussion on: Why Axios Is Awesome (and how to get started with it)

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt • Edited

Also,

const data = await fetch(url).then(r => r.json())
Enter fullscreen mode Exit fullscreen mode

if you don't need to catch response.ok (i.e. statusCode >= 200 && statusCode < 300).