Unlike callbacks, Promises support _______ chaining, which helps in writing cleaner code.
- callback
- asynchronous
- promise
- then
The correct option is 'then.' Promises support 'then' chaining, allowing you to chain multiple asynchronous operations in a more readable and maintainable way. This is a significant improvement over callbacks, leading to cleaner and more structured code.
Loading...
Related Quiz
- A class expression in ES6 can be named or unnamed, with the name being accessible inside the class's ________.
- To create a pipeline of operations, functions can be composed using higher-order functions, known as __________.
- In destructuring assignment, _________ can be used to gather the rest of the elements/properties into a new array or object.
- In a recursive function, how can default parameters be used to track state across recursive calls?
- How does the Promise.all method interact with async/await?