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

peterson st gourdain
peterson st gourdain
931 Points

what I'm I doing wrong

what step did I skip or point out my mistake ill fix it thanks

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

Matthew Long
Matthew Long
28,407 Points

You're off to a good start, but it appears that you're trying to call the function inside itself. While it's perfectly valid to call a function inside another function this isn't what this challenge is after. Also, your function doesn't have any parameters so you don't need them when calling the function. The challenge is wanting you to define a variable equal to the function called.

function getYear() {
  var year = new Date().getFullYear();
  return year;
}

var yearToday = getYear();