亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術(shù)文章
文章詳情頁

詳解JavaScript之Array.reduce源碼解讀

瀏覽:82日期:2023-10-09 14:43:50

前言

reduce(...)方法對數(shù)組中的每個元素執(zhí)行一個由您提供的reducer函數(shù)(升序執(zhí)行),將其結(jié)果匯總為單個返回值(累計作用)

此方法接受兩個參數(shù):callback(...)(必選)、initialValue(可選)。callback(...)接受4個參數(shù):Accumulator (acc) (累計器)、Current Value (cur) (當前值)、Current Index (idx) (當前索引)、Source Array (src) (源數(shù)組)。

注意點:1、callback(...)一般需要返回值2、不會改變原數(shù)組

實現(xiàn)思路1、先獲取初始累計的值(分成兩種情況:有提供initialValue || 未提供initialValue)2、遍歷數(shù)組并執(zhí)行callback(...)3、返回累計值

源碼實現(xiàn)

Array.prototype.myReduce = function(callback, initialValue) { if(this === null) { throw new TypeError( ’Array.prototype.reduce called on null or undefined’ ); } if (typeof callback !== ’function’) { throw new TypeError( callback + ’ is not a function’); } const O = Object(this); const lenValue = O.length; const len = lenValue >>> 0; if(len === 0 && !initialValue) { throw new TypeError(’the array contains no elements and initialValue is not provided’); } let k = 0; let accumulator; // 分成兩種情況來獲取accumulator // 有提供initialValue accumulator=initialValue // 沒有提供initialValue accumulator=數(shù)組的第一個有效元素 if(initialValue) { accumulator = initialValue; } else { let kPressent = false; while(!kPressent && k < len) { const pK = String(k); kPressent = O.hasOwnProperty(pK); if(kPressent) { accumulator = O[pK]; }; k++; } if(!kPressent) { throw new TypeError(’the array contains error elements’); } } // 當accumulator=initialValue時 k=0 // accumulator=數(shù)組的第一個有效元素時 k=1 while(k < len) { if(k in O) { // callback一般需要返回值 accumulator = callback(accumulator, O[k], k, O); } k++; } return accumulator;}let r = [1,2,3].myReduce(function (prevValue, currentValue, currentIndex, array) { return prevValue + currentValue;}, 22);console.log(r); // 28

參考鏈接:

reduce-mdn 官方規(guī)范

到此這篇關(guān)于詳解JavaScript之Array.reduce源碼解讀的文章就介紹到這了,更多相關(guān)JavaScript Array.reduce源碼內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標簽: JavaScript
相關(guān)文章:
主站蜘蛛池模板: 国产尤物二区三区在线观看 | 一区二区三区四区欧美 | 在线视频你懂得 | 中日韩美中文字幕 | 午夜激情免费视频 | 国产综合在线观看 | 国产成+人+综合+亚洲不卡 | 国产一区二区三区免费视频 | 亚洲欧美在线精品 | 日韩第一| 日韩欧美一区二区三区中文精品 | 日韩欧美一级 | 免费黄色视屏网站 | 俄罗斯午夜影院 | 一区二区在线播放福利视频 | 亚洲欧美一区在线 | 亚洲美女自拍视频 | 91免费观看视频 | a毛片免费全部在线播放毛 a毛片免费全部播放毛 | 欧美一区二区三区精品 | 日韩精品在线观看视频 | 999热精品这里在线观看 | 欧美一级在线毛片免费观看 | 亚洲 中文 欧美 日韩 在线 | 国产色司机在线视频免费观看 | 免费黄色毛片视频 | 97玖玖 | 2020国产精品亚洲综合网 | 91青青青青青爽在线 | 青青热久免费精品视频在线观看 | 五月天爱爱 | 亚洲精品成人一区 | 2020国产免费久久精品99 | 爱久久久国产精品 | 成年黄页网站视频全免费 | 黄色性生活一级片 | 国产理论最新国产精品视频 | 亚洲福利视频网 | 国产乱码亚洲精品一区二区 | www视频在线观看 | 一级黄色在线观看 |