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.

Vic Mercier
3,276 PointsWhat is the difference between the text method and the html method?
I have some difficulties with that course.It not explained clearly.
1 Answer

Steven Parker
220,937 PointsWith the html
method, what you add can contain tags which will be used as part of the document. But with the text
method, anything that might look like tags will just be added as text. For example, if you were to pass the argument "<h1>Hello</h1>"
to the html
method, you would see this on the page:
Hello
But if you give the same thing to the text
method, you would see:
<h1>Hello</h1>
Vic Mercier
3,276 PointsVic Mercier
3,276 PointsI can also pass only text in the html method.If I understand well what you wrote , it is like innerHtml and textContent.