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
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.
3
2
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.
8
4
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`.
15
6
16
7
## Pro Tip: Test Your Code
17
8
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.
19
10
20
11
Once you think your code is correct, you can run the tests that will evaluate your solutions to double-check them.
21
12
@@ -30,3 +21,15 @@ Then call the test runner each time you want to check your code...
30
21
```bash
31
22
$ npm test
32
23
```
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`
0 commit comments