Problem Statement
Which built-in method is commonly used for making HTTP requests in React Native?
Explanation
The Fetch API is a built-in JavaScript method for making network requests.
It returns a promise and allows handling of JSON data easily using async / await or then / catch.
Code Solution
SolutionRead Only
fetch('https://api.example.com/data').then(res => res.json());