mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
15 lines
254 B
JavaScript
15 lines
254 B
JavaScript
/**
|
|
* @param {number[]} arr
|
|
* @param {Function} fn
|
|
* @return {number[]}
|
|
*/
|
|
var map = function(arr, fn) {
|
|
let mapped_arr = new Array();
|
|
|
|
let i = 0;
|
|
for (let x of arr) {
|
|
mapped_arr.push(fn(x, i++));
|
|
}
|
|
|
|
return mapped_arr;
|
|
};
|