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
Karen Shumate
13,579 Pointsecho to be the results from calling the returnValue function. When you call the returnValue function
echo to be the results from calling the returnValue function. Challenge Task 2 of 2 This is what I have and can't figure out what I am doing wrong.
function returnValue(newJob) { return newJob; var echo = returnValue(Data anylst);
}
1 Answer
Dvontre Coleman
13,075 PointsThis will automatically return whatever is passed. When you use the return keyword you emediatly exit out of the function.
function returnValue(newJob)
{
return newJob;
}
var echo = returnValue("Data anylst");
If you are wanting the echo value to be "Data Anylst" you should add quotes and it will be returned as the word.