Descripción
charAt () es un método que devuelve el carácter del índice especificado.
Los caracteres de una cadena se indexan de izquierda a derecha. El índice del primer carácter es 0 y el índice del último carácter de una cadena, llamadostringName, es stringName.length - 1.
Sintaxis
Utilice la siguiente sintaxis para encontrar el carácter en un índice particular.
string.charAt(index);
Detalles del argumento
index - Un número entero entre 0 y 1 menor que la longitud de la cadena.
Valor devuelto
Devuelve el carácter del índice especificado.
Ejemplo
Pruebe el siguiente ejemplo.
<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>
Salida
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