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 trialDana Al Taher
Courses Plus Student 9,499 PointsParameters in JavaScript
What exactly do Parameters do and how to they help in JS?
1 Answer
Lisa Nguyen
22,731 PointsHi Dana, parameters allow you to pass in arguments to a function to carry out a specific task.
Let's say you want to create a calculator app and one of the features was finding the sum of two numbers, you'd have the following function with two parameters, a and b:
function add(a, b) { return a+b; }
You can then do add(4,8); to find the sum of 4+8. In this way, the parameters a and b act as references to the arguments you pass into the function i.e. a = 4 and b = 8. How does this help in JavaScript? You can reuse the function again and again with different values for a and b instead of writing out:
var a = 4; var b = 8; var sum = a+ b;
which helps when it comes to writing clean, readable code. Hope this helps!
Dana Al Taher
Courses Plus Student 9,499 PointsDana Al Taher
Courses Plus Student 9,499 PointsThanks Lisa! That was very helpful :)
Lisa Nguyen
22,731 PointsLisa Nguyen
22,731 PointsNo problem! Glad to help :)