<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
不知道大家平常用 Reduce 多不多,反正本瓜用的不多。但實際上,Reduce 能做的,比我們能想到的要多得多,本篇帶來 10 個Reduce 常用場景和技巧,一定有你不知道~
衝ヾ(◍°∇°◍)ノ゙
累加我們可能是最熟悉 Reduce 的一種用法,除此之外,還可以用做累積。
// adder const sum = (...nums) => { return nums.reduce((sum, num) => sum + num); }; console.log(sum(1, 2, 3, 4, 10)); // 20 // accumulator const accumulator = (...nums) => { return nums.reduce((acc, num) => acc * num); }; console.log(accumulator(1, 2, 3)); // 6
如果你用原生 api 求最大/最小值,無可厚非,Reduce 也能實現同樣的效果。
const array = [-1, 10, 6, 5]; const max = Math.max(...array); // 10 const min = Math.min(...array); // -1
const array = [-1, 10, 6, 5]; const max = array.reduce((max, num) => (max > num ? max : num)); const min = array.reduce((min, num) => (min < num ? min : num));
獲取 url 上的引數是我們經常面臨的需求,用 forEach 遍歷可以,用 Reduce 累加更可以,這樣可以減少宣告 query 物件。
// url https://qianlongo.github.io/vue-demos/dist/index.html?name=fatfish&age=100#/home // format the search parameters { "name": "fatfish", "age": "100" }
const parseQuery = () => { const search = window.location.search; let query = {}; search .slice(1) .split("&") .forEach((it) => { const [key, value] = it.split("="); query[key] = decodeURIComponent(value); }); return query; };
const parseQuery = () => { const search = window.location.search; return search .slice(1) .split("&") .reduce((query, it) => { const [key, value] = it.split("="); query[key] = decodeURIComponent(value); return query; }, {}); };
有了獲取 url 引數,就有把引數重新掛在到 url 上面,好用,收藏。
const searchObj = { name: "fatfish", age: 100, // ... }; const link = `https://medium.com/?name=${searchObj.name}&age=${searchObj.age}`; // https://medium.com/?name=fatfish&age=100
const stringifySearch = (search = {}) => { return Object.entries(search) .reduce( (t, v) => `${t}${v[0]}=${encodeURIComponent(v[1])}&`, Object.keys(search).length ? "?" : "" ) .replace(/&$/, ""); }; const search = stringifySearch({ name: "fatfish", age: 100, }); const link = `https://medium.com/${search}`; console.log(link); // https://medium.com/?name=fatfish&age=100
我們都會用 .flat(Infinity) 無限拉平所有多維陣列成一維陣列,只用 reduce 和 flat 也是可以做到這一點的。
const array = [1, [2, [3, [4, [5]]]]]; // expected output [ 1, 2, 3, 4, 5 ] const flatArray = array.flat(Infinity); // [1, 2, 3, 4, 5]
const flat = (array) => { return array.reduce( (acc, it) => acc.concat(Array.isArray(it) ? flat(it) : it), [] ); }; const array = [1, [2, [3, [4, [5]]]]]; const flatArray = flat(array); // [1, 2, 3, 4, 5]
如果想實現 flat,用 reduce 沒錯了,又是一個手寫原生 api 內部實現,妥妥的剛。
// Expand one layer by default Array.prototype.flat2 = function (n = 1) { const len = this.length let count = 0 let current = this if (!len || n === 0) { return current } // Confirm whether there are array items in current const hasArray = () => current.some((it) => Array.isArray(it)) // Expand one layer after each cycle while (count++ < n && hasArray()) { current = current.reduce((result, it) => { result = result.concat(it) return result }, []) } return current } const array = [ 1, [ 2, [ 3, [ 4, [ 5 ] ] ] ] ] // Expand one layer console.log(array.flat()) // [ 1, 2, [ 3, [ 4, [ 5 ] ] ] ] console.log(array.flat2()) // [ 1, 2, [ 3, [ 4, [ 5 ] ] ] ] // Expand all console.log(array.flat(Infinity)) console.log(array.flat2(Infinity))
陣列去重,用 reduce 竟然也可以,寫法如下:
const array = [ 1, 2, 1, 2, -1, 10, 11 ] const uniqueArray1 = [ ...new Set(array) ] const uniqueArray2 = array.reduce((acc, it) => acc.includes(it) ? acc : [ ...acc, it ], [])
將陣列的項進行計數,返回一個 map,分別是每個項重複的次數,reduce 一行程式碼搞定,收藏!
const count = (array) => { return array.reduce((acc, it) => (acc.set(it, (acc.get(it) || 0) + 1), acc), new Map()) } const array = [ 1, 2, 1, 2, -1, 0, '0', 10, '10' ] console.log(count(array)) // Map(7) {1 => 2, 2 => 2, -1 => 1, 0 => 1, '0' => 1, …}
獲取物件的多個屬性,然後賦給新的物件,比較笨的做法如下:
// There is an object with many properties const obj = { a: 1, b: 2, c: 3, d: 4, e: 5 // ... } // We just want to get some properties above it to create a new object const newObj = { a: obj.a, b: obj.b, c: obj.c, d: obj.d // ... } // Do you think this is too inefficient?
用 Reduce 這樣解決,就顯得明智了許多:
const getObjectKeys = (obj = {}, keys = []) => { return Object.keys(obj).reduce((acc, key) => (keys.includes(key) && (acc[key] = obj[key]), acc), {}); } const obj = { a: 1, b: 2, c: 3, d: 4, e: 5 // ... } const newObj = getObjectKeys(obj, [ 'a', 'b', 'c', 'd' ]) console.log(newObj)
除了 reverse 做陣列的翻轉,Reduce 也可以,再加上 split,就可以反轉字串啦。
const reverseString = (string) => { return string.split("").reduceRight((acc, s) => acc + s) } const string = 'fatfish' console.log(reverseString(string)) // hsiftaf
以上就是JavaScript中Reduce10個常用場景和技巧的詳細內容,更多關於JavaScript Reduce技巧的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45