javascript">const strList = ["hello", "world", "vue"]; // 假设这是一个字符串类型的集合
const targetStr = "vue"; // 假设这是需要判断是否包含的字符串
if (strList.includes(targetStr)) {
console.log("字符串集合中包含目标字符串");
} else {
console.log("字符串集合中不包含目标字符串");
}
在上面的代码中,我们使用includes()
方法判断strList
数组中是否包含targetStr
字符串,如果包含则输出“字符串集合中包含目标字符串”,否则输出“字符串集合中不包含目标字符串”。
该博文为原创文章,未经博主同意不得转。本文章博客地址:https://cplusplus.blog.csdn.***/article/details/133968843