String.includes
时间: 2023-02-11 12:45:40 浏览: 128
String详解
`String.includes()` 是 JavaScript 中字符串对象的一个方法。它接受一个字符串作为参数,并返回一个布尔值,表示当前字符串中是否包含该参数字符串。如果包含,则返回 true,否则返回 false。
示例:
```
let str = "hello world";
console.log(str.includes("world")); // true
console.log(str.includes("javascript")); // false
```
该函数可以接受第二个可选的参数,表示开始搜索字符串的位置
```
let str = "hello world";
console.log(str.includes("o", 4)); //true
console.log(str.includes("o", 5)); //false
```
阅读全文