问答题1208/1603实现 Array.prototype.map()

难度:
2021-07-06 创建

参考答案:

1Array.prototype.map = function(callback, thisArg) { 2 if (this == undefined) { 3 throw new TypeError('this is null or not defined'); 4 } 5 if (typeof callback !== 'function') { 6 throw new TypeError(callback + ' is not a function'); 7 } 8 const res = []; 9 // 同理 10 const O = Object(this); 11 const len = O.length >>> 0; 12 for (let i = 0; i < len; i++) { 13 if (i in O) { 14 // 调用回调函数并传入新数组 15 res[i] = callback.call(thisArg, O[i], i, this); 16 } 17 } 18 return res; 19}

最近更新时间:2021-07-07

赞赏支持

题库维护不易,您的支持就是我们最大的动力!