UNPKG
@ahsolo/lotide
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
lotide assignment for Lighthouse Labs coding bootcamp
github.com/ahSOLO/lotide
ahSOLO/lotide
@ahsolo/lotide
/
map.js
11 lines
(9 loc)
•
231 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
words = [
"ground"
,
"control"
,
"to"
,
"major"
,
"tom"
];
const
map =
function
(
array, callback
) {
const
results = [];
for
(
let
item
of
array) { results.
push
(
callback
(item)); }
return
results; };
module
.
exports
= map;