includes() 怎么检索出是否含有string
时间: 2024-03-02 11:48:10 浏览: 140
深入解析 JavaScript 中的 indexOf 和 includes 方法
`includes()` 方法可以用于检查一个字符串中是否包含指定的字符串。具体来说,可以将需要检查的字符串作为参数传递给 `includes()` 方法,如果被检查的字符串中包含该字符串,则返回 `true`,否则返回 `false`。例如:
```
let str = 'hello world';
console.log(str.includes('world')); // 输出 true
console.log(str.includes('goodbye')); // 输出 false
```
以上代码中,我们定义了一个字符串 `str`,然后使用 `includes()` 方法检查该字符串中是否包含子字符串 `'world'` 和 `'goodbye'`。第一个 `console.log()` 输出的是 `true`,因为该字符串包含 `'world'` 子字符串。第二个 `console.log()` 输出的是 `false`,因为该字符串不包含 `'goodbye'` 子字符串。
阅读全文