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 Create a Reusable Fetch Function

yazeed asaad
yazeed asaad
6,897 Points

this is the same ?

why should i add image and p again in the fetchBreedImage function ? what is the different between new image and p and the generateImage function ??

look at fetchBreedImage function

https://w.trhou.se/uhiml0j55t

1 Answer

Steven Parker
Steven Parker
229,788 Points

The fetchBreedImage function gets the URL of a specific breed sample image, and then passes it to generateImage which will create an HTML <img> tag with it and insert it into the DOM so the browser will show it.

This is different from what you get the first time, which is a random dog image (not a specific breed).