Skip to content

Commit 4e244e3

Browse files
author
Zakk Fleischmann
committed
update readme
1 parent 07f5fcd commit 4e244e3

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

readme.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,12 @@
11
# JavaScript Checkpoint
2-
Fork and clone this repository and complete the three sections below. Make at least one commit for each section. When finished, push your commits to your forked repository and submit a Pull Request back to the original repository.
32

4-
**IMPORTANT**: Make sure to use the `var` keyword for **ALL** variable declarations (for testing purposes). **DO NOT** use `const` or `let`.
5-
6-
## Fundamentals
7-
Follow the prompts and write your code in `fundamentals.js`
3+
Fork and clone this repository and complete the three sections below. Make at least one commit for each section. When you finish, push your commits to your forked repository. Wait to make your Pull Request until the end of the hour.
84

9-
## Higher-Order Functions
10-
Follow the prompts and write your code in `hof.js`
11-
12-
13-
## OOJS
14-
Follow the prompts and write your code in `oojs.js`
5+
**IMPORTANT**: Make sure to use the `var` keyword for **ALL** variable declarations (for testing purposes). **DO NOT** use `const` or `let`.
156

167
## Pro Tip: Test Your Code
178

18-
You should first test your code's functionality in the browser console via the included `index.html` file.
9+
You should first test your code's functionality in the browser console with the included `index.html` file.
1910

2011
Once you think your code is correct, you can run the tests that will evaluate your solutions to double-check them.
2112

@@ -30,3 +21,15 @@ Then call the test runner each time you want to check your code...
3021
```bash
3122
$ npm test
3223
```
24+
25+
This will execute a set of automated tests to check that your code is fulfilling each prompt.
26+
27+
## Fundamentals
28+
Follow the prompts and write your code in `fundamentals.js`
29+
30+
## Higher-Order Functions
31+
Follow the prompts and write your code in `hof.js`
32+
33+
## OOJS
34+
Follow the prompts and write your code in `oojs.js`
35+

0 commit comments

Comments
 (0)