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 trialRoberto Rivera
10,832 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,097 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,832 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,971 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,832 Pointsto finish my statement, I even tried return true and return false else parameters.
Roberto Rivera
10,832 PointsRoberto Rivera
10,832 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.