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 trialMyles Young
Full Stack JavaScript Techdegree Graduate 22,056 PointsI'm getting the expected output but i am still getting it wrong, can anybody take a look?
I can't see the problem
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 => year >= 2012).map(year => year +' A.D');
1 Answer
Owa Aquino
19,277 PointsHi Myles,
You just missed adding the last period in the 'A.D.'... That should solve the issue here.
Cheers!
Myles Young
Full Stack JavaScript Techdegree Graduate 22,056 PointsMyles Young
Full Stack JavaScript Techdegree Graduate 22,056 PointsWow how could I have missed that, thank you 😂
Owa Aquino
19,277 PointsOwa Aquino
19,277 PointsNo problem. Glad I can help. 😅