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 trialDwayne Sauls
1,279 PointsI did as asked ...just don't understand the question.
I have added the code below
function returnValue(firstArg){
var echo = firstArg
}
return firstArg;
<!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>
2 Answers
Liam Walls
7,998 PointsIt should look like this. You set the value to equal the function with the return inside of the function. This will set the value of echo to the value that is spit out by the function. A useful example is if you inputted a number and did a sum with that number you can easily retrieve the new number to the variable of echo
function returnValue(firstArg){
return firstArg;
}
var echo = returnValue("text")
Dwayne Sauls
1,279 PointsOfcourse thanks for the clarification Liam Walls