charAt()
方法从一个字符串中返回指定的字符。
语法:
str.charAt(pos);
类型声明:
interface String {chartAt(pos: number): string;}
参数说明:
参数 | 说明 | 类型 |
---|---|---|
pos | 一个介于 0 和字符串长度减 1 之间的整数。 (0~length-1)。如果没有提供索引,默认值为 0。 | number |
返回值:
返回字符串指定索引的字符。
字符串中的字符从左向右索引:
stringName
中)的索引值为 stringName.length - 1
pos
值超出了该范围,则返回一个空字符串 ''
const str = 'JAVASCRIPT';str.charAt();// Jstr.chartAt(-1);// ''str.charAt(0);// Jstr.charAt(1);// Astr.charAt(2);// Vstr.charAt(3);// Astr.charAt(4);// Sstr.charAt(5);// Cstr.charAt(6);// Rstr.charAt(7);// Istr.charAt(8);// Pstr.charAt(9);// Tstr.charAt(100);// ''