In a Promise-based AJAX call, ________ is used to asynchronously await the response without blocking the execution.
- await
- then
- catch
- async
In a Promise-based AJAX call, the await keyword is used to asynchronously await the response without blocking the execution. This allows the code to continue its execution while waiting for the AJAX response.
Loading...
Related Quiz
- JavaScript’s __________ nature allows it to perform non-blocking operations despite being single-threaded.
- How are escape sequences like n treated in template literals?
- How does the call stack in JavaScript relate to the concept of 'blocking'?
- A class expression in ES6 can be named or unnamed, with the name being accessible inside the class's ________.
- When using fetch, convert the response to JSON inside a try block and handle errors in ________.