美文网首页
lodash 返回两个数组中相同的元素

lodash 返回两个数组中相同的元素

作者: 我的昵称好听吗 | 来源:发表于2018-12-23 22:30 被阅读0次

    两个数组中,想要获取共同的元素,可以使用以下方法
    _.intersection([arrays])
    官网地址: https://www.lodashjs.com/docs/4.17.5.html#intersection

    使用方法:

    • 如果有相同的则返回相同的,没有则返回“[]”(空数组);
        let saveLevel = ['error','warn','haha'];
        let defaultLevel = ['trance','debug','info','warn','error','fatal'];
        let newLevel = _.intersection(saveLevel,defaultLevel);// [ 'error', 'warn' ]
    

    相关文章

      网友评论

          本文标题:lodash 返回两个数组中相同的元素

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