logo

Quotes About Then()

At a simple syntactical level, the then() method is the distinctive feature of Promises, and it is idiomatic to append .then() directly to the function invocation that returns the Promise, without the intermediate step of assigning the Promise object to a variable.
~ Unknown
When a Promise-based asynchronous computation completes normally, it passes its result to the function that is the first argument to then().
~ Unknown