<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
if (!Array.isArray){ Array.isArray = function(arg){ return Object.prototype.toString.call(arg) === '[object Array]'; }; }
// 1. slice Array.prototype.slice.call(arguments) // 2. concat [].concat.apply([], arguments)
// 1. ...擴充套件運運算元 [...arguments] // 2. Array.from() Array.from(arguments)
var a = []; // 1.基於instanceof a instanceof Array; // 2.基於constructor a.constructor === Array; // 3.基於Object.prototype.isPrototypeOf Array.prototype.isPrototypeOf(a); // 4.基於getPrototypeOf Object.getPrototypeOf(a) === Array.prototype; // 5.基於Object.prototype.toString Object.prototype.toString.call(a) === '[object Array]'; // 6. 通過Array.isArray Array.isArray(a)
Array.prototype.myForEach = function(fn, context = window){ let len = this.length for(let i = 0; i < len; i++){ typeof fn === 'function' && fn.call(context, this[i], i) } }
Array.prototype.myFilter = function(fn, context = window){ let len = this.length, result = [] for(let i = 0; i < len; i++){ if(fn.call(context, this[i], i, this)){ result.push(this[i]) } } return result }
Array.prototype.myEvery = function(fn, context){ let result = true, len = this.length for(let i = 0; i < len; i++){ result = fn.call(context, this[i], i, this) if(!result){ break } } return result }
Array.prototype.mySome = function(fn, context){ let result = false, len = this.length for(let i = 0; i < len; i++){ result = fn.call(context, this[i], i, this) if(result){ break } } return result }
Array.prototype.myFindIndex = function (callback) { for (let i = 0; i < this.length; i++) { if (callback(this[i], i)) { return i } } }
Array.prototype.myReduce = function (fn, initialValue) { let arr = Array.prototype.call(this) let res, startIndex res = initialValue ? initialValue : arr[0] startIndex = initialValue ? 0 : 1 for (let i = startIndex; i < arr.length; i++) { res = fn.call(null, res, arr[i], i, this) } return res }
let ary = [1, [2, [3, 4, 5]]]
const flatten = function(ary){ let result = [] for(let i = 0;i<ary.length;i++){ if(Array.isArray(ary[i])){ result = result.concat(flatten(ary[i])) } else { result.push(ary[i]) } } return result }
const flatten = function(ary){ return ary.reduce((prev, next)=>{ return prev.concat(Array.isArray(next) ? flatten(next) : next) }, []) }
const flatten = function(ary){ while(ary.some(item=>Array.isArray(item))){ ary = [].concat(...ary) } return ary }
const flatten = function(ary){ return ary.toString().split(',') }
const flatten = function(ary){ return ary.flat(Infinity) }
const flatten6 = function(ary){ let str = JSON.stringify(ary) str = str.replace(/([|])/g, '') return JSON.parse(`[${str}]`) }
const unique1 = (array) => { // return Array.from(new Set(array)) return [...new Set(array)] }
const unique2 = (array) => { const arr = [] const obj = {} array.forEach(item => { if (!obj.hasOwnProperty(item)) { obj[item] = true arr.push(item) } }) return arr }
const unique3 = (array) => { const arr = [] array.forEach(item => { if (arr.indexOf(item) === -1) { arr.push(item) } }) return arr }
const unique4 = (array) => { return array.filter((item,index) => { return array.indexOf(item) === index; }) }
const unique6 = (array) => { let result = []; array.forEach(item => { if(!result.includes(item)){ result.push(item); } }) return result; }
const unique6 = (array) => { let result = array.sort(function (a,b) { return a - b; }); for(let i = 0;i < result.length;i ++){ if(result[i] === result[i+1]){ result.splice(i + 1,1); i --; } } return result; }
function unique(array) { // res用來儲存結果 var res = []; for (var i = 0, arrayLen = array.length; i < arrayLen; i++) { for (var j = 0, resLen = res.length; j < resLen; j++ ) { if (array[i] === res[j]) { break; } } // 如果array[i]是唯一的,那麼執行完迴圈,j等於resLen if (j === resLen) { res.push(array[i]) } } return res; } console.log(unique(array)); // [1, "1"]
原理:利用陣列的前一項與相鄰的後一項相比較,判斷大/小,交換位置
const bubbleSort = function(ary){ for(let i = 0; i < ary.length - 1; i++){ for(let j = 0; j < ary.length - 1 - i; j++){ if(ary[j] > ary[j+1]){ [ary[j], ary[j+1]] = [ary[j+1], ary[j]] } } } return ary }
原理:利用陣列的某項與後面所有的值相比較,判斷大/小,交換位置
const bubbleSort = function(ary){ for(let i = 0; i < ary.length - 1; i++){ for(let j = i + 1; j < ary.length; j++){ if(ary[i] > ary[j]){ [ary[i], ary[j]] = [ary[j], ary[i]] } } } return ary }
Array.sort((a, b)=>a-b)
原理:取陣列的中間值作為基準,判斷左右兩邊的值大或小,新增到相應陣列,遞迴呼叫,然後將所有的值拼接在一起。
const quick_sort = function(ary){ if(ary.length < 1){ return ary } let centerIndex = Math.floor(ary.length/2) let centerVal = ary.splice(centerIndex, 1)[0] let left = [] let right = [] ary.forEach(item => { item > centerVal ? right.push(item) : left.push(item) }) return [...quick_sort(left), ...[centerVal], ...quick_sort(right)] }
原理:先將陣列中的一項新增到新陣列中,迴圈陣列每一項與新陣列中比較,比較大的值放在後面小的放到新陣列的前面。
const insertion_sort = function(ary){ let newAry = ary.splice(0, 1) for(let i = 0; i < ary.length; i++){ let cur = ary[i] for(let j = newAry.length - 1; j >= 0;){ if(cur < newAry[j]){ j-- j === -1 && newAry.unshift(cur) } else { newAry.splice(j + 1, 0, cur) j = -1 } } } return [...newAry] }
const maxMin = function(ary){ let [min, max] = [ary[0], ary[1]] ary.forEach(ele => { min > ele ? min = ele : null max < ele ? max = ele : null }) return [min, max] }
var arr = [6, 4, 1, 8, 2, 11, 23]; var result = arr[0]; for (var i = 1; i < arr.length; i++) { result = Math.max(result, arr[i]); } console.log(result);
var arr = [6, 4, 1, 8, 2, 11, 23]; function max(prev, next) { return Math.max(prev, next); } console.log(arr.reduce(max));
var arr = [6, 4, 1, 8, 2, 11, 23]; arr.sort(function(a,b){return a - b;}); console.log(arr[arr.length - 1])
Math.max.apply(null, ary) // 擴充套件運運算元 Math.max(...arr) // eval var max = eval("Math.max(" + arr + ")");
const balance = function(ary){ ary.sort((a, b) => a - b) ary.shift() ary.pop() let num = 0 ary.forEach(item => { num += item }) return (num/ary.length).toFixed(2) }
function shuffle(a) { var j, x, i; for (i = a.length; i; i--) { j = Math.floor(Math.random() * i); x = a[i - 1]; a[i - 1] = a[j]; a[j] = x; } return a; }
let arr = [ [1, 2, 2], [3, 4, 5, 5], [6, 7, 8, 9, [11, 12, [12, 13, [14] ] ] ], 10]; Array.from(new Set(arr.flat(Infinity))).sort((a,b)=>{ return a-b})
到此這篇關於一文掌握JavaScript陣列常用工具函數總結的文章就介紹到這了,更多相關JS陣列工具內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援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