查找字符串是否包含 "Runoob":
var str = "Hello world, welcome to the Runoob。";
var n = str.includes("world");
输出结果:true
includes() 方法用于判断字符串是否包含指定的子字符串。
如果找到匹配的字符串则返回 true,否则返回 false。
注意: includes() 方法区分大小写。
var str = "Hello world, welcome to the Runoob。";
console.log(str.includes('D'))
image.png
网友评论