Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Asynchronous Programming with JavaScript Understanding Promises Handle Multiple Promises with Promise.all

karan Badhwar
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
karan Badhwar
Web Development Techdegree Graduate 18,135 Points

how .then() method is accepting a normal data

What I understood is that .then() methods accepts a promise object and extracts its value to work with, but here how it accepted and passed the array of objects derived from promise.all() and passed it to the generateHTML, isn't it suppose to extract the value only?

Caleb Kemp
Caleb Kemp
12,754 Points

then() methods accepts a promise object and extracts its value....isn't it suppose to extract the value only?

the value returned can be an object

from Delevoper.mozilla.org

the resolved value of the promise returned by then will be the same as the resolved value of the promise returned by the handler.

Hope that helps, if not, at least it gives you the link to the promises page :smile:

Caleb Kemp
Caleb Kemp
12,754 Points

:grinning: I'm very glad to hear that :grinning: