In Promises, the _______ function is used to transition a promise into a resolved state, while _______ is used for rejection.
- resolve
- then
- reject
- catch
The correct option is 'resolve.' The resolve function transitions a promise into a resolved state, fulfilling the promise. On the other hand, the 'catch' function is used to handle rejection and is associated with the 'reject' state. The 'then' function is used for chaining and handles both fulfillment and rejection.
Loading...
Related Quiz
- Using yield* within a generator function delegates to another _________ or iterable object.
- When using relative paths in ES6 module imports, what does './' and '../' signify?
- In functional programming, _________ is a technique used to avoid side effects by ensuring data is not modified.
- Which ES6 feature can be particularly useful in writing more readable recursive functions?
- A common use case for WeakMap is to store ________ data for objects.