摘要:英文文章來(lái)源于刪除對(duì)象中除指定鍵值的屬性用遞歸的方法用方法遍歷對(duì)象然后刪除不是在給定數(shù)組中的屬性如果你傳入,它將對(duì)該鍵所對(duì)應(yīng)的對(duì)象進(jìn)行深度遍歷的變形非原著作對(duì)所有的鍵對(duì)應(yīng)的對(duì)象進(jìn)行深度遍歷用方法遍歷對(duì)象然后刪除不是在給定數(shù)組中的屬性如
英文文章來(lái)源于:https://github.com/Chalarangelo/30-seconds-of-code/blob/master/README.md
Object cleanObj刪除JSON對(duì)象中除指定鍵值的屬性.
用遞歸的方法
用 Object.keys() 方法遍歷JSON對(duì)象然后刪除不是include在給定數(shù)組中的屬性.
如果你傳入 childIndicator ,它將對(duì)該鍵所對(duì)應(yīng)的JSON對(duì)象進(jìn)行深度遍歷.
const cleanObj = (obj, keysToKeep = [], childIndicator) => { Object.keys(obj).forEach(key => { if (key === childIndicator) { cleanObj(obj[key], keysToKeep, childIndicator); } else if (!keysToKeep.includes(key)) { delete obj[key]; } }) } /* const testObj = {a: 1, b: 2, children: {a: 1, b: 2}} cleanObj(testObj, ["a"],"children") console.log(testObj)// { a: 1, children : { a: 1}} */cleanObj的變形(非原著作)
對(duì)所有的鍵對(duì)應(yīng)的JSON對(duì)象進(jìn)行深度遍歷
用 Object.keys() 方法遍歷JSON對(duì)象然后刪除不是 include 在給定數(shù)組中的屬性.
如果給定的屬性值為object,則看傳入的 dep 是否為false,或者沒(méi)有第三個(gè)參數(shù),則直接刪除.
如果傳入 dep 為true,則進(jìn)行深度遍歷.
const cleanObj = (obj, keysToKeep = [], dep=false) => { Object.keys(obj).forEach(key => { if(dep) { if (obj[key].constructor.name === "Object") { cleanObj(obj[key], keysToKeep, dep) } else { if (!keysToKeep.includes(key)) { delete obj[key]; } } } else { if (!keysToKeep.includes(key)) { delete obj[key]; } } }) return obj } /* const testObj = {a:1, b:{a:1, b:2, c:3}, c:{a:1, b:2}, d: {a:1, b:2, c:3}} cleanObj(testObj, ["a"],"children") // {a: 1, b: {a: 1}, c: {a: 1}, d: {a: 1, c: 3}} */objectFromPairs
將一個(gè)鍵值對(duì)形式的數(shù)組轉(zhuǎn)化為對(duì)象
用 Array.reduce() 去創(chuàng)建對(duì)象并合并鍵值對(duì).
const objectFromPairs = arr => arr.reduce((a, v) => (a[v[0]] = v[1], a), {}); // objectFromPairs([["a",1],["b",2]]) -> {a: 1, b: 2}objectToPairs
將一個(gè)對(duì)象轉(zhuǎn)化為鍵值對(duì)形式的數(shù)組.
用 Object.keys() 將對(duì)象轉(zhuǎn)化為對(duì)象的鍵數(shù)組,然后 Array.map() 生成一個(gè)鍵值對(duì)的數(shù)組.
const objectToPairs = obj => Object.keys(obj).map(k => [k, obj[k]]); // objectToPairs({a: 1, b: 2}) -> [["a",1],["b",2]])orderBy
按對(duì)象屬性和排序規(guī)則排序?qū)ο髷?shù)組.
使用 Array.sort() 的自定義排序規(guī)則排序,根據(jù)傳入的 order排序方式,用解構(gòu)來(lái)實(shí)現(xiàn)指定的屬性的位置交換.
如果沒(méi)有傳入?yún)?shù) order 默認(rèn)值為asc.
const orderBy = (arr, props, orders) => arr.sort((a, b) => props.reduce((acc, prop, i) => { if (acc === 0) { const [p1, p2] = orders && orders[i] === "desc" ? [b[prop], a[prop]] : [a[prop], b[prop]]; acc = p1 > p2 ? 1 : p1 < p2 ? -1 : 0; } return acc; }, 0) ); /* const users = [{ "name": "fred", "age": 48 },{ "name": "barney", "age": 36 }, { "name": "fred", "age": 40 },{ "name": "barney", "age": 34 }]; orderby(users, ["name", "age"], ["asc", "desc"]) -> [{name: "barney", age: 36}, {name: "barney", age: 34}, {name: "fred", age: 48}, {name: "fred", age: 40}] orderby(users, ["name", "age"]) -> [{name: "barney", age: 34}, {name: "barney", age: 36}, {name: "fred", age: 40}, {name: "fred", age: 48}] */select
從一個(gè)對(duì)象中檢索出選擇其所代表的屬性.
如果屬性不存在返回 undefined.
const select = (from, selector) => selector.split(".").reduce((prev, cur) => prev && prev[cur], from); // const obj = {selector: {to: {val: "val to select"}}}; // select(obj, "selector.to.val"); -> "val to select"shallowClone
對(duì)象的淺拷貝.
用 Object.assign() 和一個(gè) ({}) 來(lái)實(shí)現(xiàn)對(duì)源對(duì)象的淺拷貝.
const shallowClone = obj => Object.assign({}, obj); /* const a = { x: true, y: 1 }; const b = shallowClone(a); a === b -> false */truthCheckCollection
判斷第一個(gè)參數(shù)所代表的集合中的每一個(gè)對(duì)象中是否包含第二個(gè)參數(shù)所代表的屬性.
用 Array.every() 去檢查結(jié)合中每一個(gè)對(duì)象是否包含pre屬性.
const truthCheckCollection = (collection, pre) => (collection.every(obj => obj[pre])); // truthCheckCollection([{"user": "Tinky-Winky", "sex": "male"}, {"user": "Dipsy", "sex": "male"}], "sex") -> true
更多關(guān)于30-seconds-code中文翻譯https://github.com/lvzhenbang/article/blob/master/js/30-seconds-code/index.md
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/90528.html
摘要:英文文章來(lái)源于給定一個(gè)鍵值和一組參數(shù),但給定一個(gè)上下文時(shí)調(diào)用它們。 英文文章來(lái)源于:https://github.com/Chalarangelo/30-seconds-of-code/blob/master/README.md Adapter call 給定一個(gè)鍵值和一組參數(shù),但給定一個(gè)上下文時(shí)調(diào)用它們。 使用閉包調(diào)用存儲(chǔ)的鍵值與存儲(chǔ)的參數(shù) const call = ( key, ....
摘要:英文文章來(lái)源于計(jì)算一個(gè)字符串中字符的所有排序情況使用遞歸遍歷字符串中的每個(gè)字符計(jì)算剩余字符串的所有順序用區(qū)合并該字符和剩余字符串的每種順序然后用將該字符串的所有順序合并到一個(gè)數(shù)組中當(dāng)字符串的等于或者時(shí),是兩個(gè)基例字符串的首字母大寫(xiě)用 英文文章來(lái)源于:https://github.com/Chalarangelo/30-seconds-of-code/blob/master/README...
摘要:英文文章來(lái)源于返回參數(shù)列表中第一個(gè)非和的參數(shù)用實(shí)現(xiàn)返回第一個(gè)非參數(shù)返回一個(gè)用自定義函數(shù)中的函數(shù)是否返回來(lái)對(duì)中傳入的參數(shù)列表盡心過(guò)濾用去遍歷參數(shù)列表,用給定的函數(shù)的返回值來(lái)過(guò)濾參數(shù)列表返回給定值的基本類型返回給定值的構(gòu)造函數(shù)名字的小 Utility 英文文章來(lái)源于:https://github.com/Chalarangelo/30-seconds-of-code/blob/master...
摘要:顯示所有指定的元素用操作符和清除所有指定元素的屬性。使用了兩個(gè)事件監(jiān)聽(tīng)器。將指定的數(shù)組元素轉(zhuǎn)換成元素標(biāo)簽,然后將它們插入指定的選擇器元素內(nèi)用和去生成一個(gè)元素標(biāo)簽列表復(fù)制一個(gè)字符串到剪切板。用去執(zhí)行復(fù)制到剪切板。 英文文章來(lái)源于:https://github.com/Chalarangelo/30-seconds-of-code/blob/master/README.md Browser...
摘要:英文文章來(lái)源于數(shù)組最大公約數(shù)計(jì)算數(shù)字?jǐn)?shù)組最大公約數(shù)用和運(yùn)算式使用遞歸計(jì)算一個(gè)數(shù)字?jǐn)?shù)組的最大公約數(shù)數(shù)組最小公倍數(shù)求數(shù)字?jǐn)?shù)組的最小公倍數(shù)用和運(yùn)算式使用遞歸計(jì)算一個(gè)數(shù)字?jǐn)?shù)組的最小公倍數(shù)返回一個(gè)數(shù)組中的最大值。 英文文章來(lái)源于:https://github.com/Chalarangelo/30-seconds-of-code/blob/master/README.md Array 數(shù)組最大公...
閱讀 3704·2021-11-12 10:36
閱讀 3842·2021-09-22 15:48
閱讀 3551·2019-08-30 15:54
閱讀 2606·2019-08-29 16:44
閱讀 2374·2019-08-29 16:08
閱讀 2420·2019-08-29 16:06
閱讀 1294·2019-08-29 15:21
閱讀 3179·2019-08-29 12:39