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.

Roberto Rivera
10,831 PointsThis hurts. I can't figure this out at all.
I'm still stuck on this return function problem. I did 2 of the 3 tasks but the main problem I'm having is the whole 'return passed in' code. The parameters I have tried are the var echo = return Value ( ); returnValue = value; and returnValue (''); as well as
function returnValue( value ) {
var value = Math.floor( Math.random() * value ) + 1;
}
var echo = returnValue (''):
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JavaScript Basics</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
4 Answers

Simon Sporrong
35,096 PointsAs KRIS NIKOLAISEN wrote, you just have to :
return value;
So what's happening here is that you are creating a function that accepts one argument/parameter. All that the function does is returning that value. So you use the keyword return
and then the name of the parameter. In this case: value
. Hope it helps!

Roberto Rivera
10,831 PointsI know there's something I'm missing, I even viewed the video twice to make sure I get it down right.

KRIS NIKOLAISEN
54,663 PointsThe third task may be simpler than you think. You are just supposed to return the value passed in:
function returnValue(value) {
return value;
}

Roberto Rivera
10,831 Pointsto finish my statement, I even tried return true and return false else parameters.
Roberto Rivera
10,831 PointsRoberto Rivera
10,831 PointsThank you. I finally figured it out by starting over and fixing that. :3 Luckily it was still in the same parameter and I (value); where I thought I needed a math parameter. But thank you.