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: test.md
+8-9Lines changed: 8 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -37,14 +37,14 @@ Advice on how to optimally prepare:
37
37
38
38
## During the test
39
39
Advise on how to make a test:
40
-
- Look for low hanging fruit. Which of the assignments is easiest for you to do? Tackle that one first.
41
-
- When writing your code, write small chunks at a time, testing each time before continuing. Use temporary console.log statements to show intermediate results (remove when no longer needed). Don't continue until the code written sofar is working correctly. If you write a whole bunch of code without intermediate testing it becomes difficult to pinpoint where issues occur.
42
-
- If you get stuck in an assignment, move on to the next one. You can always come back later if time permits.
43
-
- When writing code for the browser, always open the Chrome Developer Tools. Watch out for error messages in the browser console. Inspect the network tab to examine the data returned from a remote API.
44
-
- Don't over-deliver. If styling is not required by the assignment, skip it. If time permits, you can do it later. The same goes for handling fetch errors. Focus on delivering a minimum working version that meets the requirement. Ticking off a working version again reduces your stress level. Come back later, if time permits, to embellish your solutions.
45
-
- Don't use Google as a replacement for common sense.
46
-
- After finishing an assignment, read the question again to make sure you actually gave an answer to the question.
47
-
- Before handing in the test, read it all over again to pick out the small mistakes.
40
+
-**Look for low hanging fruit**. Which of the assignments is easiest for you to do? Tackle that one first.
41
+
-**When writing your code, write small chunks at a time, testing each time before continuing**. Use temporary console.log statements to show intermediate results (remove when no longer needed). Don't continue until the code written sofar is working correctly. If you write a whole bunch of code without intermediate testing it becomes difficult to pinpoint where issues occur.
42
+
-**If you get stuck in an assignment, move on** to the next one. You can always come back later if time permits.
43
+
- When writing code for the browser, **always open the Chrome Developer Tools**. Watch out for error messages in the browser console. Inspect the network tab to examine the data returned from a remote API.
44
+
-**Don't over-deliver**. If styling is not required by the assignment, skip it. If time permits, you can do it later. The same goes for handling fetch errors. Focus on delivering a minimum working version that meets the requirement. Ticking off a working version again reduces your stress level. Come back later, if time permits, to embellish your solutions.
45
+
-**Don't use Google as a replacement for common sense.**
46
+
- After finishing an assignment, read the question again to **make sure you actually gave an answer to the question.**
47
+
- Before handing in the test, read it all over again to **pick out the small mistakes.**
48
48
49
49
## Sample questions
50
50
@@ -53,6 +53,5 @@ Advise on how to make a test:
53
53
2. Make an API call using the Fetch API or the regular XMLHttpRequest (whichever one you're more comfortable with). Use the following API: https://reqres.in/api/users
54
54
Parse the response and then display the "first_name" and "last_name" of the first three users within the DOM (inside an unordered list)
55
55
56
-
57
56
If there’s anything unclear please let us know. Also, if any of you need additional support, now is the moment to let us know as we could pair you up with someone to answer any questions you may have.
0 commit comments