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 trialZach Freitag
20,341 PointsUsing the filter and map methods on the years array, create array of display strings for each year in the 21st century.
I'm probably over complicating this, just trying to bring together everything I've learned.
My code:
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
const AD = year => `${year.toFixed(years + '' + 'A.D.')}`;
displayYears = years.filter(number => number >= 2001).map(AD);
1 Answer
Zach Freitag
20,341 PointsSo I simplified it in workspaces and this works:
displayYears = years
.filter(year => year >= 2001)
.map(year => `${year} A.D.`);
console.log(displayYears);