Which method is used to send an AJAX request when using the Fetch API with Promises?
- fetch()
- send()
- request()
- ajax()
The fetch() method is used to send an AJAX request when utilizing the Fetch API with Promises. It is a modern and flexible API for making HTTP requests and handling responses.
Loading...
Related Quiz
- What is the primary purpose of the spread operator in ES6?
- Can destructuring assignment be used with arrays, and if so, how does it differ from object destructuring?
- In a subclass constructor, the super keyword must be called before accessing _______.
- A pure function always returns the same output given the same _________.
- If a default parameter references another parameter, what order must they be declared in?