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 trialyazeed asaad
6,897 Pointsthis 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
1 Answer
Steven Parker
231,184 PointsThe 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).