The method _________ is used to execute code after a Promise is either fulfilled or rejected.
- finally()
- done()
- complete()
- finalize()
The correct method is finally(). The finally() method is used to specify a function that will be executed regardless of whether the Promise is fulfilled or rejected. It allows you to perform cleanup or finalization tasks.
Loading...
Related Quiz
- In a recursive function, how can default parameters be used to track state across recursive calls?
- In what order are tasks executed given JavaScript’s event loop and call stack mechanism?
- When a generator function is called, what is returned?
- How does a for...of loop differ from a for...in loop in terms of iteration?
- The spread operator is used to ________ elements of an iterable into individual elements.