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 trialAlsaig 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.