javascript 中關(guān)于array的常用方法
10年積累的成都做網(wǎng)站、網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè)經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問(wèn)題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先做網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有圖們免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
最近總結(jié)了一些關(guān)于array中的常用方法,
其中大部分的方法來(lái)自于《JavaScript框架設(shè)計(jì)》這本書(shū),
如果有更好的方法,或者有關(guān)于string的別的常用的方法,希望大家不吝賜教。
第一部分
數(shù)組去重,總結(jié)了一些數(shù)組去重的方法,代碼如下:
/** * 去重操作,有序狀態(tài) * @param target * @returns {Array} */ function unique(target) { let result = []; loop: for (let i = 0,n = target.length;i < n; i++) { for (let x = i + 1;x < n;x++) { if (target[x] === target[i]) { continue loop; } } result.push(target[i]); } return result; } /** * 去重操作,無(wú)序狀態(tài),效率最高 * @param target * @returns {Array} */ function unique1(target) { let obj = {}; for (let i = 0,n = target.length; i < n;i++) { obj[target[i]] = true; } return Object.keys(obj); } /** * ES6寫(xiě)法,有序狀態(tài) * @param target * @returns {Array} */ function unique2(target) { return Array.from(new Set(target)); } function unique3(target) { return [...new Set(target)]; }
第二部分
數(shù)組中獲取值,包括最大值,最小值,隨機(jī)值。
/** * 返回?cái)?shù)組中的最小值,用于數(shù)字?jǐn)?shù)組 * @param target * @returns {*} */ function min(target) { return Math.min.apply(0,target); } /** * 返回?cái)?shù)組中的最大值,用于數(shù)字?jǐn)?shù)組 * @param target * @returns {*} */ function max(target) { return Math.max.apply(0,target); } /** * 從數(shù)組中隨機(jī)抽選一個(gè)元素出來(lái) * @param target * @returns {*} */ function random(target) { return target[Math.floor(Math.random() * target.length)]; }
第三部分
對(duì)數(shù)組本身的操作,包括移除值,重新洗牌,扁平化和過(guò)濾不存在的值
/** * 移除數(shù)組中指定位置的元素,返回布爾表示成功與否 * @param target * @param index * @returns {boolean} */ function removeAt(target,index) { return !!target.splice(index,1).length; } /** * 移除數(shù)組中第一個(gè)匹配傳參的那個(gè)元素,返回布爾表示成功與否 * @param target * @param item * @returns {boolean} */ function remove(target,item) { const index = target.indexOf(item); if (~index) { return removeAt(target,index); } return false; } /** * 對(duì)數(shù)組進(jìn)行洗牌 * @param array * @returns {array} */ function shuffle(array) { let m = array.length, t, i; // While there remain elements to shuffle… while (m) { // Pick a remaining element… i = Math.floor(Math.random() * m--); // And swap it with the current element. t = array[m]; array[m] = array[i]; array[i] = t; } return array; } /** * 對(duì)數(shù)組進(jìn)行平坦化處理,返回一個(gè)一維的新數(shù)組 * @param target * @returns {Array} */ function flatten (target) { let result = []; target.forEach(function(item) { if(Array.isArray(item)) { result = result.concat(flatten(item)); } else { result.push(item); } }); return result; } /** * 過(guò)濾屬性中的null和undefined,但不影響原數(shù)組 * @param target * @returns {Array.|*} */ function compat(target) { return target.filter(function(el) { return el != null; }) }
第四部分
根據(jù)指定條件對(duì)數(shù)組進(jìn)行操作。
/** * 根據(jù)指定條件(如回調(diào)或?qū)ο蟮哪硞€(gè)屬性)進(jìn)行分組,構(gòu)成對(duì)象返回。 * @param target * @param val * @returns {{}} */ function groupBy(target,val) { var result = {}; var iterator = isFunction(val) ? val : function(obj) { return obj[val]; }; target.forEach(function(value,index) { var key = iterator(value,index); (result[key] || (result[key] = [])).push(value); }); return result; } function isFunction(obj){ return Object.prototype.toString.call(obj) === '[object Function]'; } // 例子 function iterator(value) { if (value > 10) { return 'a'; } else if (value > 5) { return 'b'; } return 'c'; } var target = [6,2,3,4,5,65,7,6,8,7,65,4,34,7,8]; console.log(groupBy(target,iterator)); /** * 獲取對(duì)象數(shù)組的每個(gè)元素的指定屬性,組成數(shù)組返回 * @param target * @param name * @returns {Array} */ function pluck(target,name) { let result = [],prop; target.forEach(function(item) { prop = item[name]; if (prop != null) { result.push(prop); } }); return result; } /** * 根據(jù)指定條件進(jìn)行排序,通常用于對(duì)象數(shù)組 * @param target * @param fn * @param scope * @returns {Array} */ function sortBy(target,fn,scope) { let array = target.map(function(item,index) { return { el: item, re: fn.call(scope,item,index) }; }).sort(function(left,right) { let a = left.re, b = right.re; return a < b ? -1 : a > b ? 1 : 0; }); return pluck(array,'el'); }
第五部分
數(shù)組的并集,交集和差集。
/** * 對(duì)兩個(gè)數(shù)組取并集 * @param target * @param array * @returns {Array} */ function union(target,array) { return unique(target.concat(array)); } /** * ES6的并集 * @param target * @param array * @returns {Array} */ function union1(target,array) { return Array.from(new Set([...target,...array])); } /** * 對(duì)兩個(gè)數(shù)組取交集 * @param target * @param array * @returns {Array.|*} */ function intersect(target,array) { return target.filter(function(n) { return ~array.indexOf(n); }) } /** * ES6 交集 * @param target * @param array * @returns {Array} */ function intersect1(target,array) { array = new Set(array); return Array.from(new Set([...target].filter(value => array.has(value)))); } /** * 差集 * @param target * @param array * @returns {ArrayBuffer|Blob|Array. |string} */ function diff(target,array) { var result = target.slice(); for (var i = 0;i < result.length;i++) { for (var j = 0; j < array.length;j++) { if (result[i] === array[j]) { result.splice(i,1); i--; break; } } } return result; } /** * ES6 差集 * @param target * @param array * @returns {Array} */ function diff1(target,array) { array = new Set(array); return Array.from(new Set([...target].filter(value => !array.has(value)))); }
第六部分
數(shù)組包含指定目標(biāo)。
/** * 判定數(shù)組是否包含指定目標(biāo) * @param target * @param item * @returns {boolean} */ function contains(target,item) { return target.indexOf(item) > -1; }
最后模擬一下數(shù)組中的pop,oush,shift和unshift的實(shí)現(xiàn)原理
const _slice = Array.prototype.slice; Array.prototype.pop = function() { return this.splice(this.length - 1,1)[0]; }; Array.prototype.push = function() { this.splice.apply(this,[this.length,0].concat(_slice.call(arguments))); return this.length; }; Array.prototype.shift = function() { return this.splice(0,1)[0]; }; Array.prototype.unshift = function() { this.splice.apply(this, [0,0].concat(_slice.call(arguments))); return this.length; };
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!