Problem Statement
Why is async / await preferred over plain promises in React Native?
Explanation
async / await helps structure asynchronous code in a linear, readable way.
It improves error handling using try / catch and avoids deeply nested then / catch chains.
Code Solution
SolutionRead Only
const res = await fetch(url); const data = await res.json();