如何使用forEach来检查数组中是否有匹配(JavaScript)



如何使用forEach检查数组中是否有匹配(JavaScript)

我不确定你到底在问什么;如何"登出"?代码中的变量?

一般来说,你不需要循环来检查数组是否存在;这就是Array.includes方法的作用:

if (files.includes(upload.type)) {
console.log("type is OK")
} else {
console.log(`type ${upload.type} not found`)
}

const isMatch = files.some((type) =>上传。

相关内容

  • 没有找到相关文章

最新更新