When using Fetch API, the response of an AJAX call is first received in the _______ format.
- JSON
- Text
- XML
- Blob
The response of a Fetch API call is initially received in the Blob format. This allows flexibility in handling various types of data, such as images, text, or other binary data.
Loading...
Related Quiz
- How does ES6 module resolution differ between web browsers and Node.js environments?
- What method is used to specify the code to execute after a Promise is fulfilled?
- In ES6, setting "type": "______" in package.json informs Node.js to treat JavaScript files as ES modules.
- When using const with destructuring, you must provide a _________ at the time of declaration.
- When developing an application with multiple dependent asynchronous API calls, would you choose Promises or callbacks? Explain why.