JS原生对字符串操作的常用方法
1.charAt()语法:字符串.charAt(索引)作用:获取对应索引位置的字符返回值:对应索引位置的字符 //准备一个原始字符串 var str='你好啊,皮蛋' //输出一次 console.log(str) //执行一下 charAt 方法 var res=str.charAt(4) //输出一下返回值 console.log(res)2.toLowerCase()语法:字符串.toLowerCase()作用:将字符串内