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 trialMousa Zeidan
2,490 PointsPurpose of (message)?
Why does Dave include (message) in his function? Why wouldn't this work?
function print() { document.write(); }
2 Answers
andren
28,558 PointsThe document.write()
method takes whatever you pass in as an argument (within its parenthesis) and writes that to the page. If you don't pass any argument then it simply blanks the page. So he defines and uses the message
parameter so that he can actually pass some data into the function to be used with the document.write()
method.
Erin Highbaugh
18,082 PointsThanks for the question and answer! I was wondering the same thing.
Mousa Zeidan
2,490 PointsMousa Zeidan
2,490 PointsThanks for your answer!