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 trialKeytron Brown
15,828 PointsRect.1 is not defined error
I dont know why its saying rect1 isnt defined when it clearly is.
class Rectangle {
constructor(width, length){
this.width = width;
this.length = length;
}
get area() {
return this.width * this.length;
}
}
const areas = [rect1.area, rect2.area, rect3.area];
const rect1 = new Rectangle(10, 5);
const rect2 = new Rectangle(6, 12);
const rect3 = new Rectangle(15, 20);
1 Answer
Moira Lawrie-Martyn
8,073 PointsHave you looked at where it's defined? When you get to the const areas section, does rect1 already have a value?