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 JavaScript Objects Loop Through Objects Display an Array of Objects on the Page – One Solution

Sam Yates-Smith
Sam Yates-Smith
5,295 Points

Why would I use JavaScript for this task. There is minimal functionality?

I the hope of not seeming dense here; why would JavaScript be used?

I understand the code. I understand its functionality and the important usage for other tasks. What I am not quite grasping is the wider reaching perspective of why I would use JS here when the functionality required for this directory is minimal. Pets names, a short description of the pet and a picture or two seems like something much easier carried out in HTML and CSS as there is mostly just content and aesthetic here?

Sorry for the newbie question!

Thanks

2 Answers

Steven Parker
Steven Parker
230,274 Points

Remember that the lesson examples are intended to illustrate the use of particular technique and will almost never be the only way to implement a specific objective and perhaps not even be the best way.

But in this case HTML is still being used, being generated by the JavaScript code. You could certainly hand-code the HTML to display a particular set of data, but updating the page with more or different data later would be a more labor-intensive maintenance task. The code itself would also be less compact, and particularly if the data set were to grow considerably, the page could take significantly longer to load.

Sam Yates-Smith
Sam Yates-Smith
5,295 Points

Ok - thanks for your input :)