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

Skip to content

Commit e095dd4

Browse files
committed
Clarify week3 MAKEME instructions
1 parent 763e670 commit e095dd4

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Week3/MAKEME.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,22 @@ _Deadline Monday_
2727
The homework for week 3 will build on the work you did in week 2. You will create a new branch based on the `week2` branch.
2828

2929
1. Make sure that you committed all changes in the week 2 version of your homework.
30-
2. Create a new `week3` branch:
30+
2. With the `week2` branch checked out, create a new `week3` branch:
3131

3232
```
3333
git checkout -b week3
3434
```
3535

3636
### 2.2 Assignment
3737

38-
This week you will work with all JavaScript files in the `src` folder. The assignment consists of two parts:
38+
The assignment consists of two parts.
39+
40+
In the first part you will modify the 'promise' homework in the from week 2 (in the `homework` folder):
3941

4042
1. Replace `XMLHttpRequest` with the `fetch` API.
4143
2. Refactor all `.then()` and `.catch()` methods with `async`/`await` and `try...catch`.
42-
3. Make your app ARIA-compliant (see below).
43-
4. Refactor your application to use ES6 classes.
44+
45+
In the second part you will 'refactor' your application to use ES6 classes. For this, you need to modify the files in the `homework-classes` folder.
4446

4547
#### 2.2.1 Replace XMLHttpRequest with fetch
4648

0 commit comments

Comments
 (0)