Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0ec2763

Browse files
committed
Text fixes
1 parent 7b7e4d9 commit 0ec2763

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

JavaScript3/Week9/classwork/exercises.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ The CV that we will be making uses three classes: `Job`, `Education` and
2727

2828
### Part 1:
2929

30+
Create the classes `Job` and `Education`.
31+
3032
- `Job` has five properties: `id`, `title`, `description`, `startDate` and `endDate` (the dates can be strings or actual `Date` objects).
3133
- `Education` has six properties: `id`, `title`, `school`, `address`, `startDate` and `endDate`.
3234

33-
Create those classes.
34-
3535
### Part 2:
3636

3737
Now add the functionality for the methods in the `CV` class.
@@ -64,15 +64,15 @@ class CV {
6464

6565
### Part 3:
6666

67-
Create a new `CV` object using the `new` keyword, and save it in a variable called `myCV`.
67+
1. Create a new `CV` object using the `new` keyword, and save it in a variable called `myCV`.
6868

69-
Apply the methods you have created on the `myCV` object. Create a few `job` and `education` objects and add them to your CV.
69+
2. Apply the methods you have created on the `myCV` object. Create a few `Job` and `Education` objects and add them to your CV.
7070

71-
Log `myCV` to the console.
71+
3. Log `myCV` to the console.
7272

73-
Remove a job and an education from `myCV`.
73+
4. Remove a job and an education from `myCV`.
7474

75-
Log `myCV` to the console, again, and check that the objects were removed correctly.
75+
5. Log `myCV` to the console, again, and check that the objects were removed correctly.
7676

7777
### Part 4:
7878

0 commit comments

Comments
 (0)