이 메서드는 지정된 인덱스의 문자를 반환합니다.
문자열의 문자는 왼쪽에서 오른쪽으로 색인이 지정됩니다. stringName이라는 문자열에서 첫 번째 문자의 인덱스는 0이고 마지막 문자의 인덱스는 stringName.length- 1입니다.
문법
string.charAt(index);
매개변수의 세부정보는 다음과 같습니다.
반환 값:
지정된 인덱스의 문자를 반환합니다.
예:
<html> <head> <title>JavaScript String charAt() Method</title> </head> <body> <script type="text/javascript"> var str = new String( "This is string" ); document.writeln("str.charAt(0) is:" + str.charAt(0)); document.writeln("<br />str.charAt(1) is:" + str.charAt(1)); document.writeln("<br />str.charAt(2) is:" + str.charAt(2)); document.writeln("<br />str.charAt(3) is:" + str.charAt(3)); document.writeln("<br />str.charAt(4) is:" + str.charAt(4)); document.writeln("<br />str.charAt(5) is:" + str.charAt(5)); </script> </body> </html>
이렇게 하면 다음과 같은 결과가 나타납니다.
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