Skip to content

Commit

Permalink
05_sumAll: Update README.md (TheOdinProject#475)
Browse files Browse the repository at this point in the history
* Change 'integers' to 'positive integers' in question statement

* requested changes

* requested changes

* requested changes
  • Loading branch information
shubhatRashid authored May 25, 2024
1 parent d67e7a3 commit 312bd8a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion 04_removeFromArray/removeFromArray.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const removeFromArray = function() {

};

// Do not edit below this line
Expand Down
2 changes: 1 addition & 1 deletion 05_sumAll/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Exercise 05 - sumAll

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

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

0 comments on commit 312bd8a

Please sign in to comment.