ES6 charAt()

charAt()是一个从指定索引返回字符的方法。字符串中的字符从左到右编制索引。第一个字符的索引是0,字符串中最后一个字符的索引(称为stringName)是stringName.length - 1。

语法

string.charAt(index);

详细参数

index - 小于字符串长度的0到1之间的整数。

返回值

返回指定索引中的字符。

var str = new String("This is string");
console.log("str.charAt(0) is:" + str.charAt(0));
console.log("str.charAt(1) is:" + str.charAt(1));
console.log("str.charAt(2) is:" + str.charAt(2));
console.log("str.charAt(3) is:" + str.charAt(3));
console.log("str.charAt(4) is:" + str.charAt(4));
console.log("str.charAt(5) is:" + str.charAt(5));

输出

str.charAt(0) is:T
str.charAt(1) is:h
str.charAt(2) is:i
str.charAt(3) is:s
str.charAt(4) is:  
str.charAt(5) is:i

此方法返回一个数字,指示给定索引处字符的Unicode值。Unicode代码点的范围为0到1,114,111。前128个Unicode代码点是ASCII字符编码的直接匹配。charCodeAt()始终返回小 ...