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 trialConnor Clausen
Front End Web Development Techdegree Student 4,335 PointsReturn more than one value
In this video, Dave mentions that a return value must be a single item (a variable, string, number, Boolean), but in his his final example he returned multiple items:
function getArea(width, length, unit) { var area = width * length; return area + " " + unit; } console.log(getArea(10, 20, 'sq ft'));
Isn't he technically returning three items? (variable, string + parameter)?
1 Answer
james south
Front End Web Development Techdegree Graduate 33,271 Pointsthe return value will be a single string composed of the variable, a space, and the unit parameter
Erika Suzuki
20,299 PointsErika Suzuki
20,299 PointsThis I think is one of the downsides of JavaScript as a language. Integers like
area
can be concatenated with strings. It's not a stick to one data type.