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

Samuel Cruz
Samuel Cruz
9,794 Points

Hi Im stuck with this question about functions. It says that im not storing the returned value into my variable.

Hi Im stuck with this question about functions. It says that im not storing the returned value into my variable named 'echo'. Can someone please help been stuck on this one for so long. my code:

script.js
function returnValue(cheese){
  var echo = (cheese);
  return echo; 
}
returnValue('pizza');
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>

1 Answer

Steven Parker
Steven Parker
229,732 Points

The variable "echo" is in the wrong place.

The instructions say to create the variable "After your newly created returnValue function...", but your "echo" is inside the function. Put the function back the way it was for task 1.

Then, to store a value you create an assignment. The variable name will go on the left, then an equal sign ("="), then the value being assigned (in this case, the function call).