for(let i in arguments){
if(!Number.isFinite(arguments[i])){
throw errMsg;
}
eslint提示'i' is defined but never used.请问有什么解决办法,不想关闭no-unused-vars
相似问题