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 trialSamuel Cruz
9,794 PointsHi 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:
function returnValue(cheese){
var echo = (cheese);
return echo;
}
returnValue('pizza');
<!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
231,236 PointsThe 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).
Samuel Cruz
9,794 PointsSamuel Cruz
9,794 PointsThank you so much.