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 Basics (Retired) Making Decisions with Conditional Statements Introducing Conditional Statements

Dylan Davenport
PLUS
Dylan Davenport
Courses Plus Student 2,645 Points

What is the value in putting a paragraph tag <p>in the document.write method?

I have seen this done in a few videos and upon looking it up online I haven't found anything useful.

2 Answers

Steven Parker
Steven Parker
231,007 Points

The "value" is if you want to create a paragraph element.

Tags written to the document will become elements on your page. You can create other kinds of elements by writing different tags to the document. For example, this will create a button:

document.write("<button>Push me</button>");