1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 01:36:57 +02:00
LeetCode/js/apply-transform-over-each-element-in-array.js

16 lines
254 B
JavaScript
Raw Normal View History

/**
* @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;
};