DEV Community

Discussion on: The Smallest Possible Mistake to make when using Promises

Collapse
 
savagepixie profile image
SavagePixie • Edited

Another thing you can do, when the then statement takes only one function with the return of the promise as its only parameter, is to just write its name, something like this:

promise
  .then(console.log)
Collapse
 
dalmo profile image
Dalmo Mendonça

Yeah I usually do that as well, and in a sense that may have led me to believe then(console.log('smth')) would be okay. Subtle but makes all the difference.