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为去重后的数组
网友评论