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 Using Fetch

Samuel Kleos
seal-mask
.a{fill-rule:evenodd;}techdegree
Samuel Kleos
Front End Web Development Techdegree Student 12,719 Points

When is the promise being created by fetch()?

Looking at the following line by line:

btn.addEventListener('click', (event) => {
    event.target.textContent = "Loading...";
    fetch(astrosUrl)
        .then(response => response.json())
                .then(getProfiles)
        .then(generateHTML)
        .finally(() => event.target.remove());
});

Is the promise object being created after you pass astrosUrl to fetch() or is it being created by the .json() method.

1 Answer

Steven Parker
Steven Parker
229,788 Points

The promise object is created immediately upon calling fetch, but at that time it will still be in a pending state. The .json() method is not called until later when the promise has been (successfully) resolved.