Chaîne JavaScript - propriété length
La description
Cette propriété renvoie le nombre de caractères dans une chaîne.
Syntaxe
Utilisez la syntaxe suivante pour trouver la longueur d'une chaîne -
string.length
Valeur de retour
Renvoie le nombre de caractères de la chaîne.
Exemple
Essayez l'exemple suivant.
<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>
Production
str.length is:14