请编写一段代码,使用includes方法判断strA中是否含有strB内容。 var strA = 'Hello World'; var strB = 'World';
时间: 2024-02-01 22:13:32 浏览: 114
C# String类型判断数据源码
好的,下面是代码:
```javascript
var strA = 'Hello World';
var strB = 'World';
if (strA.includes(strB)) {
console.log('strA中包含strB');
} else {
console.log('strA中不包含strB');
}
```
输出结果为:`strA中包含strB`。
阅读全文