25個你不得不知道的數組reduce高級用法

做者:JowayYoung
倉庫:GithubCodePen
博客:官網掘金思否知乎
公衆號:IQ前端
特別聲明:原創不易,未經受權不得轉載或抄襲,如需轉載可聯繫筆者受權前端

前言

距離上一篇技術文章《1.5萬字歸納ES6所有特性》發佈到如今,已經有整整4個月沒有輸出過一篇技術文章了。哈哈,不是不想寫,而是實在太忙,這段時間天天不是上班就是加班,徹底沒有本身的時間。這篇文章也是抽空之餘完成,但願你們喜歡,謝謝你們繼續支持我。git

reduce做爲ES5新增的常規數組方法之一,對比forEachfiltermap,在實際使用上好像有些被忽略,發現身邊的人極少使用它,致使這個如此強大的方法被逐漸埋沒。github

若是常用reduce,怎麼可能放過如此好用的它呢!我仍是得把他從塵土中取出來擦乾淨,奉上它的高級用法給你們。一個如此好用的方法不該該被大衆埋沒。segmentfault

下面對reduce的語法進行簡單說明,詳情可查看MDNreduce()的相關說明。數組

  • 定義:對數組中的每一個元素執行一個自定義的累計器,將其結果彙總爲單個返回值
  • 形式:array.reduce((t, v, i, a) => {}, initValue)
  • 參數
    • callback:回調函數(必選)
    • initValue:初始值(可選)
  • 回調函數的參數
    • total(t):累計器完成計算的返回值(必選)
    • value(v):當前元素(必選)
    • index(i):當前元素的索引(可選)
    • array(a):當前元素所屬的數組對象(可選)
  • 過程
    • t做爲累計結果的初始值,不設置t則以數組第一個元素爲初始值
    • 開始遍歷,使用累計器處理v,將v的映射結果累計到t上,結束這次循環,返回t
    • 進入下一次循環,重複上述操做,直至數組最後一個元素
    • 結束遍歷,返回最終的t

reduce的精華所在是將累計器逐個做用於數組成員上,把上一次輸出的值做爲下一次輸入的值。下面舉個簡單的栗子,看看reduce的計算結果。瀏覽器

const arr = [3, 5, 1, 4, 2];
const a = arr.reduce((t, v) => t + v);
// 等同於
const b = arr.reduce((t, v) => t + v, 0);
複製代碼

代碼不太明白不要緊,貼一個reduce的做用動圖應該就會明白了。markdown

reduce

reduce實質上是一個累計器函數,經過用戶自定義的累計器對數組成員進行自定義累計,得出一個由累計器生成的值。另外reduce還有一個胞弟reduceRight,兩個方法的功能實際上是同樣的,只不過reduce是升序執行,reduceRight是降序執行。frontend

對空數組調用reduce()和reduceRight()是不會執行其回調函數的,可認爲reduce()對空數組無效
複製代碼

高級用法

單憑以上一個簡單栗子不足以說明reduce是個什麼。爲了展現reduce的魅力,我爲你們提供25種場景來應用reduce的高級用法。有部分高級用法可能須要結合其餘方法來實現,這樣爲reduce的多元化提供了更多的可能性。異步

部分示例代碼的寫法可能有些騷,看得不習慣可自行整理成本身的習慣寫法
複製代碼
累加累乘
function Accumulation(...vals) {
    return vals.reduce((t, v) => t + v, 0);
}

function Multiplication(...vals) {
    return vals.reduce((t, v) => t * v, 1);
}
複製代碼
Accumulation(1, 2, 3, 4, 5); // 15
Multiplication(1, 2, 3, 4, 5); // 120
複製代碼
權重求和
const scores = [
    { score: 90, subject: "chinese", weight: 0.5 },
    { score: 95, subject: "math", weight: 0.3 },
    { score: 85, subject: "english", weight: 0.2 }
];
const result = scores.reduce((t, v) => t + v.score * v.weight, 0); // 90.5
複製代碼
代替reverse
function Reverse(arr = []) {
    return arr.reduceRight((t, v) => (t.push(v), t), []);
}
複製代碼
Reverse([1, 2, 3, 4, 5]); // [5, 4, 3, 2, 1]
複製代碼
代替map和filter
const arr = [0, 1, 2, 3];

// 代替map:[0, 2, 4, 6]
const a = arr.map(v => v * 2);
const b = arr.reduce((t, v) => [...t, v * 2], []);

// 代替filter:[2, 3]
const c = arr.filter(v => v > 1);
const d = arr.reduce((t, v) => v > 1 ? [...t, v] : t, []);

// 代替map和filter:[4, 6]
const e = arr.map(v => v * 2).filter(v => v > 2);
const f = arr.reduce((t, v) => v * 2 > 2 ? [...t, v * 2] : t, []);
複製代碼
代替some和every
const scores = [
    { score: 45, subject: "chinese" },
    { score: 90, subject: "math" },
    { score: 60, subject: "english" }
];

// 代替some:至少一門合格
const isAtLeastOneQualified = scores.reduce((t, v) => t || v.score >= 60, false); // true

// 代替every:所有合格
const isAllQualified = scores.reduce((t, v) => t && v.score >= 60, true); // false
複製代碼
數組分割
function Chunk(arr = [], size = 1) {
    return arr.length ? arr.reduce((t, v) => (t[t.length - 1].length === size ? t.push([v]) : t[t.length - 1].push(v), t), [[]]) : [];
}
複製代碼
const arr = [1, 2, 3, 4, 5];
Chunk(arr, 2); // [[1, 2], [3, 4], [5]]
複製代碼
數組過濾
function Difference(arr = [], oarr = []) {
    return arr.reduce((t, v) => (!oarr.includes(v) && t.push(v), t), []);
}
複製代碼
const arr1 = [1, 2, 3, 4, 5];
const arr2 = [2, 3, 6]
Difference(arr1, arr2); // [1, 4, 5]
複製代碼
數組填充
function Fill(arr = [], val = "", start = 0, end = arr.length) {
    if (start < 0 || start >= end || end > arr.length) return arr;
    return [
        ...arr.slice(0, start),
        ...arr.slice(start, end).reduce((t, v) => (t.push(val || v), t), []),
        ...arr.slice(end, arr.length)
    ];
}
複製代碼
const arr = [0, 1, 2, 3, 4, 5, 6];
Fill(arr, "aaa", 2, 5); // [0, 1, "aaa", "aaa", "aaa", 5, 6]
複製代碼
數組扁平
function Flat(arr = []) {
    return arr.reduce((t, v) => t.concat(Array.isArray(v) ? Flat(v) : v), [])
}
複製代碼
const arr = [0, 1, [2, 3], [4, 5, [6, 7]], [8, [9, 10, [11, 12]]]];
Flat(arr); // [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
複製代碼
數組去重
function Uniq(arr = []) {
    return arr.reduce((t, v) => t.includes(v) ? t : [...t, v], []);
}
複製代碼
const arr = [2, 1, 0, 3, 2, 1, 2];
Uniq(arr); // [2, 1, 0, 3]
複製代碼
數組最大最小值
function Max(arr = []) {
    return arr.reduce((t, v) => t > v ? t : v);
}

function Min(arr = []) {
    return arr.reduce((t, v) => t < v ? t : v);
}
複製代碼
const arr = [12, 45, 21, 65, 38, 76, 108, 43];
Max(arr); // 108
Min(arr); // 12
複製代碼
數組成員獨立拆解
function Unzip(arr = []) {
    return arr.reduce(
        (t, v) => (v.forEach((w, i) => t[i].push(w)), t),
        Array.from({ length: Math.max(...arr.map(v => v.length)) }).map(v => [])
    );
}
複製代碼
const arr = [["a", 1, true], ["b", 2, false]];
Unzip(arr); // [["a", "b"], [1, 2], [true, false]]
複製代碼
數組成員個數統計
function Count(arr = []) {
    return arr.reduce((t, v) => (t[v] = (t[v] || 0) + 1, t), {});
}
複製代碼
const arr = [0, 1, 1, 2, 2, 2];
Count(arr); // { 0: 1, 1: 2, 2: 3 }
複製代碼
此方法是字符統計和單詞統計的原理,入參時把字符串處理成數組便可
複製代碼
數組成員位置記錄
function Position(arr = [], val) {
    return arr.reduce((t, v, i) => (v === val && t.push(i), t), []);
}
複製代碼
const arr = [2, 1, 5, 4, 2, 1, 6, 6, 7];
Position(arr, 2); // [0, 4]
複製代碼
數組成員特性分組
function Group(arr = [], key) {
    return key ? arr.reduce((t, v) => (!t[v[key]] && (t[v[key]] = []), t[v[key]].push(v), t), {}) : {};
}
複製代碼
const arr = [
    { area: "GZ", name: "YZW", age: 27 },
    { area: "GZ", name: "TYJ", age: 25 },
    { area: "SZ", name: "AAA", age: 23 },
    { area: "FS", name: "BBB", age: 21 },
    { area: "SZ", name: "CCC", age: 19 }
]; // 以地區area做爲分組依據
Group(arr, "area"); // { GZ: Array(2), SZ: Array(2), FS: Array(1) }
複製代碼
數組成員所含關鍵字統計
function Keyword(arr = [], keys = []) {
    return keys.reduce((t, v) => (arr.some(w => w.includes(v)) && t.push(v), t), []);
}
複製代碼
const text = [
    "今每天氣真好,我想出去釣魚",
    "我一邊看電視,一邊寫做業",
    "小明喜歡同桌的小紅,又喜歡後桌的小君,真TM花心",
    "最近上班喜歡摸魚的人實在太多了,代碼很差好寫,在想入非非"
];
const keyword = ["偷懶", "喜歡", "睡覺", "摸魚", "真好", "一邊", "明天"];
Keyword(text, keyword); // ["喜歡", "摸魚", "真好", "一邊"]
複製代碼
字符串翻轉
function ReverseStr(str = "") {
    return str.split("").reduceRight((t, v) => t + v);
}
複製代碼
const str = "reduce最牛逼";
ReverseStr(str); // "逼牛最ecuder"
複製代碼
數字千分化
function ThousandNum(num = 0) {
    const str = (+num).toString().split(".");
    const int = nums => nums.split("").reverse().reduceRight((t, v, i) => t + (i % 3 ? v : `${v},`), "").replace(/^,|,$/g, "");
    const dec = nums => nums.split("").reduce((t, v, i) => t + ((i + 1) % 3 ? v : `${v},`), "").replace(/^,|,$/g, "");
    return str.length > 1 ? `${int(str[0])}.${dec(str[1])}` : int(str[0]);
}
複製代碼
ThousandNum(1234); // "1,234"
ThousandNum(1234.00); // "1,234"
ThousandNum(0.1234); // "0.123,4"
ThousandNum(1234.5678); // "1,234.567,8"
複製代碼
異步累計
async function AsyncTotal(arr = []) {
    return arr.reduce(async(t, v) => {
        const at = await t;
        const todo = await Todo(v);
        at[v] = todo;
        return at;
    }, Promise.resolve({}));
}
複製代碼
const result = await AsyncTotal(); // 須要在async包圍下使用
複製代碼
斐波那契數列
function Fibonacci(len = 2) {
    const arr = [...new Array(len).keys()];
    return arr.reduce((t, v, i) => (i > 1 && t.push(t[i - 1] + t[i - 2]), t), [0, 1]);
}
複製代碼
Fibonacci(10); // [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
複製代碼
URL參數反序列化
function ParseUrlSearch() {
    return location.search.replace(/(^\?)|(&$)/g, "").split("&").reduce((t, v) => {
        const [key, val] = v.split("=");
        t[key] = decodeURIComponent(val);
        return t;
    }, {});
}
複製代碼
// 假設URL爲:https://www.baidu.com?age=25&name=TYJ
ParseUrlSearch(); // { age: "25", name: "TYJ" }
複製代碼
URL參數序列化
function StringifyUrlSearch(search = {}) {
    return Object.entries(search).reduce(
        (t, v) => `${t}${v[0]}=${encodeURIComponent(v[1])}&`,
        Object.keys(search).length ? "?" : ""
    ).replace(/&$/, "");
}
複製代碼
StringifyUrlSearch({ age: 27, name: "YZW" }); // "?age=27&name=YZW"
複製代碼
返回對象指定鍵值
function GetKeys(obj = {}, keys = []) {
    return Object.keys(obj).reduce((t, v) => (keys.includes(v) && (t[v] = obj[v]), t), {});
}
複製代碼
const target = { a: 1, b: 2, c: 3, d: 4 };
const keyword = ["a", "d"];
GetKeys(target, keyword); // { a: 1, d: 4 }
複製代碼
數組轉對象
const people = [
    { area: "GZ", name: "YZW", age: 27 },
    { area: "SZ", name: "TYJ", age: 25 }
];
const map = people.reduce((t, v) => {
    const { name, ...rest } = v;
    t[name] = rest;
    return t;
}, {}); // { YZW: {…}, TYJ: {…} }
複製代碼
Redux Compose函數原理
function Compose(...funs) {
    if (funs.length === 0) {
        return arg => arg;
    }
    if (funs.length === 1) {
        return funs[0];
    }
    return funs.reduce((t, v) => (...arg) => t(v(...arg)));
}
複製代碼

兼容和性能

好用是挺好用的,可是兼容性如何呢?在Caniuse上搜索一番,兼容性絕對的好,可大膽在任何項目上使用。不要吝嗇你的想象力,盡情發揮reducecompose技能啦。對於時常作一些累計的功能,reduce絕對是首選方法。async

caniuse-reduce

caniuse-reduceRight

另外,有些同窗可能會問,reduce的性能又如何呢?下面咱們經過對forforEachmapreduce四個方法同時作1~100000的累加操做,看看四個方法各自的執行時間。

// 建立一個長度爲100000的數組
const list = [...new Array(100000).keys()];

// for
console.time("for");
let result1 = 0;
for (let i = 0; i < list.length; i++) {
    result1 += i + 1;
}
console.log(result1);
console.timeEnd("for");

// forEach
console.time("forEach");
let result2 = 0;
list.forEach(v => (result2 += v + 1));
console.log(result2);
console.timeEnd("forEach");

// map
console.time("map");
let result3 = 0;
list.map(v => (result3 += v + 1, v));
console.log(result3);
console.timeEnd("map");

// reduce
console.time("reduce");
const result4 = list.reduce((t, v) => t + v + 1, 0);
console.log(result4);
console.timeEnd("reduce");
複製代碼
累加操做 執行時間
for 6.719970703125ms
forEach 3.696044921875ms
map 3.554931640625ms
reduce 2.806884765625ms

以上代碼在MacBook Pro 2019 15寸 16G內存 512G閃存Chrome 79下執行,不一樣的機器不一樣的環境下執行以上代碼都有可能存在差別。

我已同時測試過多臺機器和多個瀏覽器,連續作了10次以上操做,發現reduce整體的平均執行時間仍是會比其餘三個方法稍微快一點,因此你們仍是放心使用啦!本文更可能是探討reduce的使用技巧,如對reduce的兼容和性能存在疑問,可自行參考相關資料進行驗證。

最後,送你們一張reduce生成的乘法口訣表:一七得七,二七四十八,三八婦女節,五一勞動節,六一兒童節

乘法口訣表

乘法口訣表

代碼詳情請戳這裏。讓咱們一塊兒來發揮想象力,訓練大腦思惟啦,更多JS騷操做可查看我這篇文章《靈活運用JS開發技巧》

結語

❤️關注+點贊+收藏+評論+轉發❤️,原創不易,鼓勵筆者創做更多高質量文章

關注公衆號IQ前端,一個專一於CSS/JS開發技巧的前端公衆號,更多前端小乾貨等着你喔

  • 關注後回覆資料免費領取學習資料
  • 關注後回覆進羣拉你進技術交流羣
  • 歡迎關注IQ前端,更多CSS/JS開發技巧只在公衆號推送

相關文章
相關標籤/搜索