Search Docs
true
false
1
const str = "Hello, world!"; console.log(str.indexOf("Hello")); // 0 console.log(str.indexOf("world", 7)) // 7(从索引7开始查找)