其他分享
首页 > 其他分享> > 日常开发记录-indexOf方法

日常开发记录-indexOf方法

作者:互联网

indexOf() 方法可返回某个指定的字符串值在字符串中首次出现的位置。
如果没有找到匹配的字符串则返回 -1。
let str = "hello world , welcome."
console.log(str.indexOf("he"))  // 0
console.log(str.indexOf("xxxx")) // -1
 

 

 

标签:返回,console,log,记录,indexOf,日常,str,字符串
来源: https://www.cnblogs.com/huguo/p/16389515.html