Skip to content

Commit 8a82785

Browse files
committed
tabbing
1 parent f108c45 commit 8a82785

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: javascript-hard-parts-v2/callbacks.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ console.log(alphabet); //prints 'abcd'
5454

5555
// Challenge 5
5656
function mapWith(array, callback) {
57-
const arr = []
58-
forEach(array, elem => arr.push(callback(elem)))
59-
return arr
57+
const arr = []
58+
forEach(array, elem => arr.push(callback(elem)))
59+
return arr
6060
}
6161

6262

0 commit comments

Comments
 (0)