Login
Remember
Register
Ask a Question
What are the main rules of promise in Javascript?
0
votes
asked
Sep 29, 2023
in
JavaScript
by
JackTerrance
What are the main rules of promise in Javascript?
javascript-interview-qeustions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 29, 2023
by
JackTerrance
A promise must follow a specific set of rules:
A promise is an object that supplies a standard-compliant
.then()
method
A pending promise may transition into either fulfilled or rejected state
A fulfilled or rejected promise is settled and it must not transition into any other state.
Once a promise is settled, the value must not change.
...