溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

js數(shù)組常見處理有哪些

發(fā)布時間:2022-03-14 14:06:30 來源:億速云 閱讀:132 作者:小新 欄目:web開發(fā)

小編給大家分享一下js數(shù)組常見處理有哪些,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

數(shù)組常見處理

掌握數(shù)組常見方法,記在腦子里,不要寫的時候再去看API了,這樣可以有效提升編碼效率,畢竟這些方法每天都在用

every some filter map forEach find findIndex reduce includes

const arr = [1,2,3]
//every 每一項都成立,才會返回true
console.log( arr.every(it => it>0 ) ) //true
//some 有一項都成了,就會返回true
console.log( arr.some(it => it>2 ) ) //true
//filter 過濾器
console.log( arr.filter(it => it===2 ) ) //[2]
//map 返回一個新數(shù)組
console.log( arr.map(it => it==={id:it} ) ) //[ {id:1},{id:2},{id:3} ]
//forEach 沒有返回值
console.log( arr.forEach(it => it===console.log(it)) ) //undefined
//find 查找對應(yīng)值 找到就立馬返回符合要求的新數(shù)組
console.log( arr.find(it => it===it>2) ) //3
//findIndex 查找對應(yīng)值 找到就立馬返回符合要求新數(shù)組的下標(biāo)
console.log( arr.findIndex(it => it===it>2) ) //2
//reduce 求和或者合并數(shù)組
console.log( arr.reduce((prev,cur) => prev+cur) ) //6
//includes 求和或者合并數(shù)組
console.log( arr.includes(1) ) //true
//數(shù)組去重
const arr1 = [1,2,3,3]
const removeRepeat = (arr) => [...new Set(arr1)]//[1,2,3]
//數(shù)組求最大值
Math.max(...arr)//3
Math.min(...arr)//1
//對象解構(gòu) 這種情況也可以使用Object.assign代替
let defaultParams={
    pageSize:1,
    sort:1
}
//goods1
let reqParams={
    ...defaultParams,
    sort:2
}
//goods2
Object.assign( defaultParams, {sort:2} )

以上是“js數(shù)組常見處理有哪些”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

js
AI