What method is used to specify the code to execute after a Promise is fulfilled?
- then()
- catch()
- resolve()
- reject()
The then() method is used to specify the code that should be executed after a Promise is fulfilled. It allows you to handle the successful resolution of a Promise and work with the result.
Loading...
Related Quiz
- How does a for...of loop differ from a for...in loop in terms of iteration?
- Can a generator function yield another generator function? If so, how is it achieved?
- How does the reduce method's accumulator work in each iteration of the array?
- To execute multiple async functions in parallel and wait for all of them, use __________.
- In what order are tasks executed given JavaScript’s event loop and call stack mechanism?