Skip to content

2635-apply-transform-over-each-element-in-array

DevGod
DevGod
Vtuber
/**
* @param {number[]} arr
* @param {Function} fn
* @return {number[]}
*/
var map = function(arr, fn) {
let myArr = [];
let I = 0;
for(num of arr){
myArr.push(fn(num,I));
I= I+1;
}
return myArr;
};