fetchResult
The `fetchResult` method is a function available in JavaScript, primarily used within the context of asynchronous operations involving the Fetch API. It is designed to retrieve the response body of a fetch request as a stream of data, allowing for incremental processing without loading the entire response into memory at once.
When making HTTP requests with the Fetch API, the `fetchResult` method is not directly called by developers;
The method is part of the underlying implementation of the Fetch API, ensuring that responses are processed
Developers should focus on the higher-level methods provided by the Fetch API, such as `response.body` or `response.arrayBuffer()`,