Cette méthode renvoie le caractère de l'index spécifié.
Les caractères d'une chaîne sont indexés de gauche à droite. L'index du premier caractère est 0 et l'index du dernier caractère d'une chaîne appelée stringName est stringName.length- 1.
Grammaire
string.charAt(index);
Voici le détail des paramètres :
Valeur de retour :
Renvoie le caractère de l'index spécifié.
Exemple :
<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>
Cela produira les résultats suivants :
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