Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b67f5a3

Browse files
authored
Update step2-2.js
1 parent ad99fc4 commit b67f5a3

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

Week3/homework/step2-2.js

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1 @@
1-
'use strict';
21

3-
function threeFive(startIndex, stopIndex, threeCallback, fiveCallback) {
4-
const numbers = [];
5-
6-
// Replace this comment and the next line with your code
7-
console.log(startIndex, stopIndex, threeCallback, fiveCallback, numbers);
8-
}
9-
10-
function sayThree(number) {
11-
// Replace this comment and the next line with your code
12-
console.log(number);
13-
}
14-
15-
function sayFive(number) {
16-
// Replace this comment and the next line with your code
17-
console.log(number);
18-
}
19-
20-
threeFive(10, 15, sayThree, sayFive);
21-
22-
// Do not change or remove anything below this line
23-
module.exports = threeFive;

0 commit comments

Comments
 (0)