Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Update Week3/homework/step2-2.js
Removed console.log statement

Co-Authored-By: Gabe Rodriguez <[email protected]>
  • Loading branch information
jshortz and grod220 authored Jul 28, 2019
commit 3a47521eed31e92bc7cba920a81c42d5e8a7f2f3
1 change: 0 additions & 1 deletion Week3/homework/step2-2.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ function threeFive(startIndex, stopIndex, threeCallback, fiveCallback) {
fiveCallback(number);
}
}
console.log(startIndex, stopIndex, threeCallback, fiveCallback, numbers);
}

threeFive(10, 15, sayThree, sayFive);
Expand Down