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 Passing an Argument to a Function

This 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

script.js
function returnValue( value ) {
    var value = Math.floor( Math.random() * value ) + 1;

}

var echo = returnValue (''):
index.html
<!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
Simon Sporrong
35,097 Points

As 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!

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

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

The third task may be simpler than you think. You are just supposed to return the value passed in:

function returnValue(value) {
    return value;
}

to finish my statement, I even tried return true and return false else parameters.