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 Loops, Arrays and Objects Simplify Repetitive Tasks with Loops The Refactor Challenge, Part 2

Mousa Zeidan
Mousa Zeidan
2,490 Points

Purpose of (message)?

Why does Dave include (message) in his function? Why wouldn't this work?

function print() { document.write(); }

2 Answers

andren
andren
28,558 Points

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

Mousa Zeidan
Mousa Zeidan
2,490 Points

Thanks for your answer!

Thanks for the question and answer! I was wondering the same thing.