Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed array values
Array values were incorrect. One of the mentors here has suggested that the array creation be removed, as it isn't necessary to accomplish what this asks for.
  • Loading branch information
jshortz authored Jul 13, 2019
commit 7fa479d0870e1c3d7d535d5918d3ead525785e04
2 changes: 1 addition & 1 deletion Week3/MAKEME.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function threeFive(startIndex, stopIndex, threeCallback, fiveCallback) {

threeFive(10, 15, sayThree, sayFive);

// Should create an array [10,11,12,12.14,15]
// Should create an array [10,11,12,13,14,15]
// and call sayFive, sayThree, sayThree, sayFive
// please make sure you see why these calls are made before you start coding
```
Expand Down