美文网首页
判断数组中是否包含某个id的对象

判断数组中是否包含某个id的对象

作者: IssunRadiance | 来源:发表于2023-04-11 18:22 被阅读0次
    getRepeatId (arr, id) {
      var index = arr.findIndex(item => item.id=== id)
      return index  // -1 说明arr中不存在id为传入id的对象
    }
    
    const arr = [{id: 1},{id: 2},{id: 3},{id: 4},{id: 5}]
    this.getRepeatId(arr, 1)
    this.getRepeatId(arr, 6)
    

    相关文章

      网友评论

          本文标题:判断数组中是否包含某个id的对象

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