Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Alsaig Sandra
Front End Web Development Techdegree Graduate 15,434 PointsWhy would we write the HTML content with Javascript??
I guess I'm wondering why would we use html in Javascript,and if theres a way to create the content in HTML and afterwards link it the Javascript functions and methods?
1 Answer

Alsaig Sandra
Front End Web Development Techdegree Graduate 15,434 PointsThank you so much, Stuart! It makes total sence! 😊 🙏🏼
Stuart Alexander
Front End Web Development Techdegree Graduate 14,582 PointsStuart Alexander
Front End Web Development Techdegree Graduate 14,582 PointsHi Sandra, I was thinking the same as I went through the JS courses. I would say the main benefit of writing HTML using JS is when you require many blocks of code that require the same HTML markup. You can create 100 employee profiles that are presented exactly the same way using one piece of JS code (loops) whereas that would entail a lot of HTML code and a whole lot more maintenance.
I have not done full stack but I think this becomes even more useful as users interact more and new profiles etc are created.
Hope this helps.