Cette propriété renvoie le nombre de caractères dans la chaîne.
Grammaire
string.length
Voici le détail des paramètres :
Valeur de retour :
Renvoie le nombre de caractères dans la chaîne.
Exemple :
<html> <head> <title>JavaScript String length Property</title> </head> <body> <script type="text/javascript"> var str = new String( "This is string" ); document.write("str.length is:" + str.length); </script> </body> </html>
Cela produira les résultats suivants :
str.length is:14