国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

詳解JavaScript之Array.reduce源碼解讀

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

前言

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

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

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

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

源碼實現

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=數組的第一個有效元素 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=數組的第一個有效元素時 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 官方規范

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

標簽: JavaScript
相關文章:
主站蜘蛛池模板: 狠狠做久久深爱婷婷97动漫 | 色情毛片 | 国产一区2区 | a毛片免费全部在线播放毛 a毛片免费视频 | 蜜臀91精品国产高清在线观看 | 国产精品久久国产精品99 | 狠狠色狠狠色综合久久一 | 男人扒开双腿女人爽视频免费 | 在线观看国产一级强片 | 一级特黄aa大片欧美网站 | 美女很黄很黄是免费的·无遮挡网站 | 日本精品网 | 免费看一级欧美毛片视频 | 中文字幕乱码中文乱码51精品 | 日本精品中文字幕有码 | 日韩午夜 | 中文国产成人精品久久久 | 国产免费怡红院视频 | 国产成人综合网在线播放 | 真人一级毛片国产 | 好吊妞国产欧美日韩视频 | 精品一区二区三区在线播放 | 日韩一级特黄毛片在线看 | 成人免费网站视频 | 91久久亚洲国产成人精品性色 | 中文字幕欧美在线观看 | 国产一区二区免费在线 | 欧美高清视频手机在在线 | 韩国美女爽快一级毛片黄 | aa毛片免费全部播放完整 | 黄色免费在线网址 | 欧美在线 | 欧美 | 一级一片免费看 | 久久成人a毛片免费观看网站 | 91手机看片国产福利精品 | 亚洲国产天堂久久精品网 | 黄页网站18以下禁止观看 | 国产成人免费福利网站 | 长腿校花被啪到腿软视频 | 美女把张开腿男生猛戳免费视频 | 亚洲在线小视频 |