charAt() 方法获取指定下标的字符,下标从0开始
语法:
string.charAt(index)
参数:
index:指定的下标
举例:获取下标为2的字符
var str = 'abner pan' console.log(str.charAt(2))
输出: