为什么 in 运算符不能处理 JavaScript [duplicate] 中的字符串列表

Why doesn't the in operator work with the list of strings in JavaScript [duplicate]

提问人:Ju Ju Soe 提问时间:7/29/2023 更新时间:7/29/2023 访问量:19

问:



let checkExistance = "a" in ["a","b","c","e"];

console.log(checkExistance)// returns false

// wh`your text`y 

/我在 JavaScript 中尝试了 in 运算符来创建一个函数,该函数接受两个参数:要删除的对象和属性。我使用 in 运算符来检查要删除的项目或属性是否存在。但 in 运算符的行为不同。/

javascript 数组列表 javascript 对象 问题跟踪

评论

0赞 Nick Parsons 7/29/2023
对于数组,您应该使用 .includes() 来检查它是否包含您的值。

答: 暂无答案