This surprises many devs.
fetch(url) // resolves on 404
✅ Correct
Manually check:
if (!response.ok) throw Error();
Daily micro-tips for C#, SQL, performance, and scalable backend engineering.
This surprises many devs.
fetch(url) // resolves on 404
Manually check:
if (!response.ok) throw Error();