UNPKG
@s-awaken/lotide
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Syrym's project for Lighthouse Labs Bootcamp
github.com/s-awaken/lotide
s-awaken/lotide
@s-awaken/lotide
/
map.js
9 lines
(8 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
map
=
function
(
array
, callback
)
{
const
results
= [];
for
(
const
element
in
array
) { results.
push
(
callback
(element)); }
return
results; }; module.exports = map;