其他分享
首页 > 其他分享> > JS 字符串 String对象

JS 字符串 String对象

作者:互联网

  1. charAt(index)
    返回指定索引位置的字符
  2. indexOf(searchString,startIndex)
    返回子字符串第一次出现的位置,从startIndex开始查找,找不到时返回-1
  3. lastIndexOf(searchString,startIndex)
    从由往左找子字符串,找不到时返回-1

标签:返回,index,searchString,lastIndexOf,String,JS,startIndex,字符串
来源: https://www.cnblogs.com/xiaobaiv/p/10562911.html