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

the functions parameter?

what does the parameter in the function printNumber (number) do? what does (number) do in this code.

function printNumber (number) { var placeholder = document.getElementById("placeholder") placeholder.innerHTML = number; }

1 Answer

Steven Parker
Steven Parker
243,658 Points

The function needs repair, the places where placeholder is used without quotes are erroneous. The repaired function would look like this:

function printNumber (number) { document.getElementById("placeholder").innerHTML = number; }

Once repaired, whatever you give as the parameter to that function will show up on the page as the content of the element with the ID placeholder.

Also note that despite the argument being named "number", the value passed to the function may or may not be an actual number (any string would do).