js代码输出world在字符串hello world中的位置
时间: 2023-09-03 17:06:48 浏览: 78
hello_world.zip_hello world.e_world
可以使用JavaScript中的`indexOf()`方法来查找一个字符串中另一个字符串的位置。例如:
```javascript
const str = "hello world";
const searchStr = "world";
const position = str.indexOf(searchStr);
console.log(position); // 输出 6
```
这里,我们首先定义了一个包含字符串 "hello world" 的变量 `str`,然后定义了另一个变量 `searchStr` 包含要查找的字符串 "world"。接下来,我们使用`indexOf()`方法来查找 `searchStr` 在 `str` 中的位置,并将结果存储在变量 `position` 中。最后,我们将 `position` 输出到控制台,它将输出 6,因为 "world" 在 "hello world" 中的索引位置为 6。
阅读全文