91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

js數組find,some,filter,reduce如何區分

發布時間:2022-10-21 17:45:36 來源:億速云 閱讀:121 作者:iii 欄目:編程語言

本文小編為大家詳細介紹“js數組find,some,filter,reduce如何區分”,內容詳細,步驟清晰,細節處理妥當,希望這篇“js數組find,some,filter,reduce如何區分”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

區分清楚Array中filter、find、some、reduce這幾個方法的區別,根據它們的使用場景更好的應用在日常編碼中。

Array.find

Array.find 返回一個對象(第一個滿足條件的對象)后停止遍歷

const arrTest = [
    { id: 1, name: "a" },
    { id: 2, name: "b" },
    { id: 3, name: "b" },
    { id: 4, name: "c" }
]

// 過濾條件
function getName(val) {
    return arrTest => arrTest.name === val
}
// 如果我們是想找到第一個滿足條件的數據,應該使用`Array.find`
console.log(arrTest.find(getName("b")))
// { id: 2, name: "b" }

Array.some

Array.some 返回是否滿足條件的布爾值

const arrTest = [
    { id: 1, name: "a", status: "loading" },
    { id: 2, name: "b", status: "loading" },
    { id: 3, name: "b", status: "success" }
]

// 過濾條件
function getStatus(val) {
    return arrTest => arrTest.status === val
}
// 如果我們需要查找一個數組中是否存在某個數據的時候,使用Array.some直接拿到結果
console.log(arrTest.some(getStatus("success")))
// true

Array.filter

Array.filter 遍歷整個Array返回一個數組(包含所有滿足條件的對象)

const arrTest = [
    { id: 1, name: "a", status: "loading" },
    { id: 2, name: "b", status: "loading" },
    { id: 3, name: "b", status: "success" }
]

// 過濾條件
function getStatus(val) {
    return arrTest => arrTest.status === val
}

 
// 如果我們是需要過濾出一個數組中所有滿足條件的數據,應該使用Array.filter
console.log(arrTest.filter(getStatus("loading")))
// [
//   { id: 1, name: "a", status: "loading" },
//   { id: 2, name: "b", status: "loading" }
// ]

Array.reduce

Array.reduce 為數組的歸并方法,使用場景很多,比如求和、求乘積,計次,去重,多維轉一維,屬性求和等...
本節示例主要實現Array.reduce對一組數據進行條件過濾后,返回一個新的數組

const arrTest = [
    { id: 1, status: "loading" },
    { id: 2, status: "loading" },
    { id: 3, status: "success" }
]

console.log(
    arrTest.reduce((acc, character) => {
        return character.status === "loading"
            ? acc.concat(
                  Object.assign({}, character, { color: "info" })
              )
            : acc
    }, [])
)
// [
//   { id: 1, status: "loading", color: "info" },
//   { id: 2, status: "loading", color: "info" }
// ]

與Array.filter返回的數組的不同,filter返回的是原數組中符合條件的對象集合,filter與 Array.map 結合也可以實現上面的結果,為什么使用reduce更好呢?

// Array.map 和 Array.filter 組合

console.log(
    arrTest
        .filter(character => character.status === "loading")
        .map(character =>
            Object.assign({}, character, { color: "info" })
        )
)
// [
//   { id: 1, status: "loading", color: "info" },
//   { id: 2, status: "loading", color: "info" }
// ]

結論:同時使用 Array.filter 和 Array.map 的時候,對整個數組循環了 2 遍。第一次是過濾返回一個新的數組,第二次通過 map 又構造一個新的數組。使用了兩個數組方法,每一個方法都有各自的回調函數,而且 filter 返回的數組以后再也不會用到。
使用 Array.reduce 同樣的結果,代碼更優雅。

讀到這里,這篇“js數組find,some,filter,reduce如何區分”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

三明市| 普定县| 芒康县| 新竹市| 九江市| 洞口县| 新郑市| 上高县| 新昌县| 华阴市| 英德市| 彭州市| 仲巴县| 昌平区| 延寿县| 平江县| 阳信县| 雷州市| 益阳市| 沾益县| 白河县| 贵定县| 靖远县| 鄂托克旗| 常山县| 梅河口市| 廊坊市| 高清| 南部县| 防城港市| 高陵县| 米脂县| 雷波县| 昭觉县| 金华市| 色达县| 密山市| 年辖:市辖区| 长宁县| 海宁市| 温泉县|