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.

davidreyes2
3,422 PointsFunction parenthesis
I am having trouble understanding what this piece of code means in the parenthesis.
function print (message) { document.write(message); }
What does "message" mean in this code? Can't I just use the "print" instead? Is there a difference?
Thanks.
1 Answer

Hayes McCardell II
643 PointsParameters (arguments) go inside parenthesis. The function or method is print. The parameters (arguments) are what is being passed into the function.
if you
alert("hello")
Hello is what is being passed to the alert method.
davidreyes2
3,422 Pointsdavidreyes2
3,422 PointsI understand alert, but I don't understand function, anyway to show me bit by bit?
Hayes McCardell II
643 PointsHayes McCardell II
643 PointsUnless message is a global variable (which are bad practice to use), the function print will not have access to the message. So in order for the code inside the function block to access message, you are passing it into the function as a parameter.
Whatever you want to have access to inside a function, it can be passed into the function as a parameter.