The ________ method is used to read a Response stream and return it as a blob.
- text()
- json()
- blob()
- arrayBuffer()
The blob() method is used to read a Response stream and return it as a blob object. This is commonly used when dealing with binary data or files. The other options (text(), json(), arrayBuffer()) are used for different types of Response data processing.
Loading...
Related Quiz
- The concept that allows JavaScript objects to inherit properties and behavior from an object of another class is known as _________.
- How does the prototype property behave in arrow functions?
- What is the result of the comparison operator === if the operands are of different types?
- To iterate over the entries of an object (key-value pairs), the object should be converted to an array of arrays using Object._______.
- How is block scope affected when using var compared to let and const?