Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Samantha McElhinney
1,931 PointsI'm not sure why I'm getting the error identifier already defined when I'm reassigning the variable with const
const century20 = years.filter(number => number <= 2000);
const years = [1989, 2015, 2000, 1999, 2013, 1973, 2012];
let century20;
// century20 should be: [1989, 2000, 1999, 1973]
// Write your code below
const century20 = years.filter(number => number <= 2000);
1 Answer

ntm
Courses Plus Student 9,490 PointsI don't think you can change between let
and const
within the same scope of a program. century20
was initialized (with "no value", which I believe evaluates to null
by default) above your code. You no longer need to use the let
or const
keywords on that variable name, or identifier, within this program scope.
It may be clearer to you if it was declared with an initial value, such as let century20 = []
to help mentally track that the variable already exists.