这个方法返回从指定索引的字符。
字符串中的字符进行索引从左向右。第一个字符的索引是0,并且在一个叫 stringName字符串的最后一个字符的索引是stringName.length- 1。
语法
下面是参数的详细信息:
- index: 介于0和1比串的长度以下的整数。
返回值:
返回从指定索引的字符。
例子:
str.charAt(2) is:" + str.charAt(2)); document.writeln("
str.charAt(3) is:" + str.charAt(3)); document.writeln("
str.charAt(4) is:" + str.charAt(4)); document.writeln("
str.charAt(5) is:" + str.charAt(5));