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 Returning a Value from a Function

Benjamin Kolstrup
Benjamin Kolstrup
3,792 Points

How do i store a return value inside a new variable?

How do i store a return value inside a new variable?

script.js
function getYear(){
    var year = new Date().getFullYear();
  return(year);
}
getYear();
var yearToday = result; 
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,608 Points

You've got much of it there, the assignment operator (=) causes what you put on the right side to be stored in what's on the left. And "var" creates a new variable. But since you would not normally call a function that returns something by itself, I'm guessing what you wanted to store was the result of the function (which would not be associated with the word "result" unless you create a variable with that name and assign it).

So with a slight rearrangement you'd have this:

var yearToday = getYear();