DEV Community

Discussion on: async/await Crash Course

Collapse
 
gabbersepp profile image
Josef Biehler • Edited

Hi, this line is wrong:
promise.then(console.log('Done Last.'))
It should be
promise.then(() =>console.log('Done Last.'))
:-)

Collapse
 
kumareth profile image
Kumar Abhirup

Thanks for the feedback, will update :)