File tree 1 file changed +6
-4
lines changed 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -27,20 +27,22 @@ _Deadline Monday_
27
27
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.
28
28
29
29
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:
31
31
32
32
```
33
33
git checkout -b week3
34
34
```
35
35
36
36
### 2.2 Assignment
37
37
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):
39
41
40
42
1 . Replace ` XMLHttpRequest ` with the ` fetch ` API.
41
43
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 .
44
46
45
47
#### 2.2.1 Replace XMLHttpRequest with fetch
46
48
You can’t perform that action at this time.
0 commit comments