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 JavaScript Basics (Retired) Creating Reusable Code with Functions Giving Information to Functions

Connor Clausen
seal-mask
.a{fill-rule:evenodd;}techdegree
Connor Clausen
Front End Web Development Techdegree Student 4,335 Points

Return 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)?

Erika Suzuki
Erika Suzuki
20,299 Points

This 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.

1 Answer