Which HTTP method is used by the browser to send a preflight request?
- GET
- POST
- OPTIONS
- HEAD
The browser uses the HTTP OPTIONS method to send a preflight request when making a cross-origin request with certain headers or methods that may require server approval. The server should respond to the preflight request with appropriate CORS headers to indicate whether the actual request is allowed. The other HTTP methods are not used for preflight requests.
Loading...
Related Quiz
- To run multiple npm scripts sequentially in the specified order, you can use npm run ______.
- Which type of testing focuses on verifying the functionality of individual components in isolation?
- How does the lexical scoping mechanism work in JavaScript?
- You are tasked with developing a real-time chat application where low latency and high availability are critical. Which type of database would be the most suitable, and what considerations should you have in mind regarding data consistency and partitioning?
- Which loop structure should you use in JavaScript when you want to execute a block of code a specific number of times?