add(fn) {
let pond = this.pond;
isExist = false;
pond.forEach(item =>item === fn ? isExist = true : null);
!isExist?pond.push(fn):null;
/* pond.forEach(item =>item !== fn ? pond.push(fn) : null)*/
};请问为什么不能把isExist 这个变量节省掉,改成pond.forEach(item =>item !== fn ? pond.push(fn) : null)?
添加回答
举报
0/150
提交
取消