美文网首页vue2.0js + css 应用
forEach 和set数组去重

forEach 和set数组去重

作者: zlf_j | 来源:发表于2018-07-30 18:02 被阅读7次

    forEach 如何做到不改变this指向

    array.forEach(func, this);

    forEach中的判断

    this.tableList.forEach(function (item, index) {
         if (item.children_data.length === 0) {
               this.indexs = index
          }
     }, this)
    

    数组去重 (ES6)

    let arr = [1,2,4,5,6,7,1,2] // arr为去重前的数组
    let newArr = Array.from(new Set(arr))  // newArr为去重后的数组
    

    相关文章

      网友评论

        本文标题:forEach 和set数组去重

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