av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

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

詳解JavaScript之Array.reduce源碼解讀

瀏覽:97日期: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人人超碰| 国产精品黄色 | 99re6热在线精品视频播放 | 久久专区 | 国产三区在线观看视频 | 在线观看国产视频 | 91在线导航 | 九九精品网 | 一区二区三区影院 | 精品一区二区三区在线视频 | 久久精品国产免费高清 | 99精品免费在线观看 | 丁香五月缴情综合网 | 激情欧美一区二区三区 | 亚洲精品在线91 | 国产精品日产欧美久久久久 | 中文字幕一区二区三区日韩精品 | 视频一区 亚洲 | 国产精品视频久久久久久 | 国产成人免费视频网站视频社区 | 中文字幕av在线一二三区 | 亚洲精品电影在线观看 | 日韩中文字幕在线观看视频 | 国产福利小视频 | 天天天操操操 | 黄色免费看 | 欧美成人手机视频 | 日韩成人免费视频 | 69av网 | 99久久精品免费看国产四区 | 国产高清精品在线 | 国产乱码精品1区2区3区 | 中国毛片免费 | 午夜激情免费 | 中文字幕 在线观看 | 精品一区二区三区视频在线观看 | 亚洲欧美视频一区 | 交专区videossex农村 | 91精品国产91久久久久久丝袜 | 欧美精品久久久久久久久老牛影院 | 欧美综合一区 |