Skip to content

Commit 09aea65

Browse files
committed
updated README
1 parent b047f8c commit 09aea65

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,12 @@ Laptop, Google Chrome browser and a text editor. If you do not have a text edito
2020

2121
### Let's get started...
2222

23-
Run the SpecRunner.html file in a browser. This document shows 4 failing tests.
23+
Run the SpecRunner.html file in a browser. This document current shows 4 failing tests.
2424

25-
The `spec` folder holds all the failing tests that are being displayed in SpecRunner.html. The `src` folder holds the functions that are being called to run the tests. Your task is to edit the filed in `src` to complete the functions and get the tests to pass. These files are just javascript files so you can use console.log to help debug and inspect these functions.
25+
- The `spec` folder holds all the failing tests that are being displayed in SpecRunner.html.
26+
- The `src` folder holds the functions that are being called to run the tests.
27+
- Your task is to edit the files in `src` to complete the functions and get the tests to pass.
28+
- These files are just javascript files so you can use `console.log` to help debug and inspect these functions.
2629

2730
## Recursion Review
2831

@@ -63,23 +66,23 @@ In this sprint, you'll be practicing writing recursive functions, building up to
6366

6467
## Exercises
6568

66-
More detailed instructions for each exercise can be found in the individual .js files in the `src` folder.
69+
More detailed instructions and examples for each exercise can be found in the individual `.js` files in the `src` folder.
6770

6871
### 1: sumArray
6972

70-
- [ ] Implement `sumArray` with your own function in `src/sumArray.js`
73+
- [ ] Implement `sumArray` with your own code in `src/sumArray.js`
7174

7275
### 2: power
7376

74-
- [ ] Implement `power` with your own function in `src/power.js`
77+
- [ ] Implement `power` with your own code in `src/power.js`
7578

7679
### 3: nthFibonacci
7780

78-
- [ ] Implement `nthFibonacci` with your own function in `src/nthFibonacci.js`
81+
- [ ] Implement `nthFibonacci` with your own code in `src/nthFibonacci.js`
7982

8083
### 4: getElementsByClassName
8184

82-
- [ ] Implement `getElementsByClassName` with your own function in `src/getElementsByClassName.js`
85+
- [ ] Implement `getElementsByClassName` with your own code in `src/getElementsByClassName.js`
8386
- [ ] You should use `document.body`, `element.childNodes`, and `element.classList`
8487
- NOTE: You may also use methods from the [underscore](https://underscorejs.org) library for assitance, but are not required to do so.
8588
- You can view the MDN documentation for getElementsByClassName [here](https://developer.mozilla.org/en/docs/Web/API/Document/getElementsByClassName)

0 commit comments

Comments
 (0)