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

My code for this section

Hello everyone, I wanted to check if my code is also right in relation to this section

class Board {
    constructor() {
        this.rows = 6;
        this.columns = 7;
        this.spaces = this.createSpaces();
    }


     /**
     * Generates 2D array of spaces
     * @return {array}  An array of space objects
     */

    createSpaces() {
        const spaces = [];

        for (let i = 0; i < this.columns; i++) {
            for (let j = 0; j < this.rows; i++) {
                let space = new Space(i, j, this);
                spaces.push(space);
            }
        }
        return spaces;
    }


} 

1 Answer

My only question is.. what is the point of sending the whole object to Space constructor?

let space = new Space(i, j, this); // I mean 'this'