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.

Connor 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,258 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.