You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -25,12 +25,12 @@ const fred = new Person({
25
25
***Fork** and clone this repository.
26
26
***Complete** all of the exercises found in the assignment files.
27
27
28
-
###`prototype-refactor` - Take existing code and make it modern, extending it in turn
28
+
## `prototype-refactor` - Take existing code and make it modern, extending it in turn
29
29
30
30
* You're going to work with your prototypes assignment you built out yesterday. Only this time you're going to actually have a solution built out for you.
31
31
*`Challenge:`**Convert** all of your constructors into ES6 Classes using the `class` and `extends` keywords. You should be able to run your same logs and they should build out the proper expected behaviors.
32
32
33
-
###`lambda-classes` - We need a roster of Lambda School personnel. Build it!
33
+
## `lambda-classes` - We need a roster of Lambda School personnel. Build it!
34
34
35
35
* All of the instructions you'll need for this project can be found in the `lambda-classes` file. But here is an overview of what we're trying to achieve here.
36
36
@@ -60,7 +60,7 @@ const fred = new Instructor({
60
60
* Person receives `speak` as a method.
61
61
* This method logs out a phrase `Hello my name is Fred, I am from Bedrock` where `name` and `location` are the object's own props
62
62
63
-
### Instructor
63
+
####Instructor
64
64
65
65
* Now that we have a Person as our base class, we'll build our Instructor class.
66
66
* Instructor uses the same attributes that have been set up by Person
0 commit comments