Skip to content

Commit dca5819

Browse files
author
Max Kelly
committed
100. Creating SubClasses - removed comments
1 parent 9890c75 commit dca5819

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

Diff for: oop/person.js

-10
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,6 @@ class Student extends Person {
6767
}
6868
}
6969

70-
71-
// 1. Create a class for students
72-
// 2. Track student grade 0 - 100
73-
// 3. Override bio to print a passing or failing message. 70 and above "Andrew is passing the test"
74-
// 4. Create "UpdateGrade" that takes the amount to add or remove from the grade.
75-
76-
// Create student
77-
// Print status
78-
// Change grade to change status.
79-
8070
const me = new Student('Max', 'Kelly', 21, 10, 'English')
8171
console.log(me.getBio())
8272
me.updateGrades(+80);

0 commit comments

Comments
 (0)