美文网首页
es6 更好的使用数组

es6 更好的使用数组

作者: ticktackkk | 来源:发表于2021-03-12 15:34 被阅读0次

    文章

    • // 删除表格某一行的数据

    • let newData = dataList.filter(v=>v.id!=rowId)

    • setDataList(newData)

    • // 并集

    • let union = a.concat(b.filter(v => !a.includes(v))) // [1,2,3,4,5]

    • // 交集

    • let intersection = a.filter(v => b.includes(v)) // [2]

    • // 差集

    • let difference = a.concat(b).filter(v => !a.includes(v) || !b.includes(v)) // [1,3,4,5]

    相关文章

      网友评论

          本文标题:es6 更好的使用数组

          本文链接:https://www.haomeiwen.com/subject/bfszqltx.html