8000 05_sumAll: Update README.md (#475) · 0xNull-ops/javascript-exercises@312bd8a · GitHub
[go: up one dir, main page]

Skip to content

Commit 312bd8a

Browse files
05_sumAll: Update README.md (TheOdinProject#475)
* Change 'integers' to 'positive integers' in question statement * requested changes * requested changes * requested changes
1 parent d67e7a3 commit 312bd8a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

04_removeFromArray/removeFromArray.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const removeFromArray = function() {
2-
32
};
43

54
// Do not edit below this line

05_sumAll/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Exercise 05 - sumAll
22

3-
Implement a function that takes 2 integers and returns the sum of every number between(and including) them:
3+
Implement a function that takes 2 positive integers and returns the sum of every number between (and including) them:
44

55
```javascript
66
sumAll(1, 4) // returns the sum of 1 + 2 + 3 + 4 which is 10

0 commit comments

Comments
 (0)
0