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

Skip to content

Commit 7ce55f8

Browse files
authored
Update test.md
1 parent 2e5759a commit 7ce55f8

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

test.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ Advice on how to optimally prepare:
3737

3838
## During the test
3939
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.**
4848

4949
## Sample questions
5050

@@ -53,6 +53,5 @@ Advise on how to make a test:
5353
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
5454
Parse the response and then display the "first_name" and "last_name" of the first three users within the DOM (inside an unordered list)
5555

56-
5756
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.
5857

0 commit comments

Comments
 (0)