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 Array Iteration Methods Combining Array Methods Method Chaining

Melissa Benton
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Melissa Benton
Front End Web Development Techdegree Graduate 17,230 Points

How do I chain .filter and .map together correctly?

I'm not sure what I'm missing in my code to return the desired outcome. Any advice is appreciated.

app.js
const years = [1989, 2015, 2000, 1999, 2013, 1973, 2012];
let displayYears;

// displayYears should be: ["2015 A.D.", "2013 A.D.", "2012 A.D."]
// Write your code below
displayYears = years
  .filter(year => {
    if (year < 2101 && year > 2000) {
      return year;
    }
    .map(year => `${year}A.D.`)
  });

1 Answer

Steven Parker
Steven Parker
229,744 Points

You're close, but the filter function should return only "true" or "false" instead of a value. You can accomplish this using the short form of arrow function as you did for map:

displayYears = years
  .filter(year => year < 2101 && year > 2000)
  .map(year => `${year} A.D.`);

And you forgot to put a space between the year and "A.D.".