In React Native, what does
fetch() return?- aA callback function that fires when the request finishes
- bA synchronous Response object
- cA Promise that resolves to a Response object✓
- dAn observable stream that must be subscribed to
Explanation:
fetch() is Promise-based: it returns a Promise that resolves with a Response object once headers arrive, regardless of the HTTP status code.