提问人:Ju Ju Soe 提问时间:7/29/2023 更新时间:7/29/2023 访问量:19
为什么 in 运算符不能处理 JavaScript [duplicate] 中的字符串列表
Why doesn't the in operator work with the list of strings in JavaScript [duplicate]
问:
let checkExistance = "a" in ["a","b","c","e"];
console.log(checkExistance)// returns false
// wh`your text`y
/我在 JavaScript 中尝试了 in 运算符来创建一个函数,该函数接受两个参数:要删除的对象和属性。我使用 in 运算符来检查要删除的项目或属性是否存在。但 in 运算符的行为不同。/
答: 暂无答案
评论
.includes()
来检查它是否包含您的值。