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 trialRicardo Guerrero
4,424 Pointswhich is the better way to write the function below?
function calcAreaOfRect(lenght, width) { return lenght * width; }
console.log(calcAreaOfRect(3,5));
or
function getArea(width, length) { var area = width * length; return area; } console.log(getArea(10, 20));
Please elaborate if you can, thank you.
1 Answer
Matthew Long
28,407 PointsThe fist one.
function calcAreaOfRect(length, width) {
return length * width;
}
You don't need to create a variable area
that lives inside the function if all you're going to use it for is to return something immediately after. If you were going to use the variable area
for something else inside the function then the second function might be the better choice.
Ricardo Guerrero
4,424 PointsRicardo Guerrero
4,424 PointsAwesome, thanks for the feedback Matthew.