JavaScript介绍
主要是了解 JavaScript 与 ECMAScript 关系。ECMAScript是一种语言标准,而 JavaScript 是对 ECMAScript 的一种实现。
如何查找当前字符的所有位置
/* 查找当前字符 e 在字符串中的所有位置 */
let str = 'Learning is like sailing against the current'
let pos = str.indexOf('e')
let arr = []
while(pos !== -1){
arr.push(pos)
pos = str.indexOf('e',pos+1)
}
console.log(arr)
后续安排
公众号会持续更新优质内容,如果你需要转载或者推文,都可以联系博主哈~