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)
?
橋本奈奈未
相关分类