Skip to content

JavaScript-IV-James-Blazer - #544

Open
jblazer1 wants to merge 2 commits into
bloominstituteoftechnology:masterfrom
jblazer1:master
Open

JavaScript-IV-James-Blazer#544
jblazer1 wants to merge 2 commits into
bloominstituteoftechnology:masterfrom
jblazer1:master

Conversation

@jblazer1

Copy link
Copy Markdown

No description provided.

@Xarfo Xarfo left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Jim - Good job on the completion of last evening's project. Keep up the good work and excel in today's sprint.

What Looks Great

  • MVP complete! Nice work
  • Code is well formatted and easy to read

What Could Be Improved

  • There are tons of stretch goals to work on when you have time! It's great practice to come back to this project and work on it to keep up your full-stack skills!
  • Please commit descriptively more often.

}
} // Person

class Instructor extends Person {

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Jim - Great class structure!

gender: "male",
gradClassName: "CS1",
favInstructor: "Fred"
});

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Object creation using the new keyword looks good.

favInstructor: "Tom"
});

const paulie = new ProjectManagers({

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Class structure looks good!

sprintCallenge(subject) {
console.log(`${this.name} has begun sprint challenge on ${subject}`);
}
} // Student

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Class inheritance is extended correctly and implemented.

    constructor(stuAtrr) {
        super(stuAtrr);
        this.previousBackground = stuAtrr.previousBackground;
        this.className = stuAtrr.className;
        this.favSubjects = stuAtrr.favSubjects;
    }
    listsSubjects() {
        for(let i = 0; i < this.favSubjects.length; i++)
        console.log(`My favorite subjects are ${this.favSubjects[i]}`);
    }
    PRAssignment(subject) {
        console.log(`${this.name} has submitted a PR for ${subject}`);
    }
    sprintCallenge(subject) {
        console.log(`${this.name} has begun sprint challenge on ${subject}`);
    }
} // Student```

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants