我在forEach()
内部进行检查,因为输出中有x行,它显示错误的x倍。
让pretent var比较输出1,2,3,4
compare.forEach(function(item){
if(input == item){
console.log('Succes');
} else {
// So if input does not equals the arrays
console.log('error');
}
});
现在因为我在输出中有4个项目,我4
次console.log('error');
我必须避免4次错误显示吗?