Jan 7, 2021
Yeap, in an actual promise, then() takes two arguments, a callback for a success case, and another for the failure case.
This illustrates that find() isn't an actual promise (that's why chaining .then() after find() doesn't give you the two callbacks that'll you'll get with actual promises).
Thanks for your question! :)