JavaScript String - méthode toString ()
La description
Cette méthode renvoie une chaîne représentant l'objet spécifié.
Syntaxe
Sa syntaxe est la suivante -
string.toString( )
Valeur de retour
Renvoie une chaîne représentant l'objet spécifié.
Exemple
Essayez l'exemple suivant.
<html>
<head>
<title>JavaScript String toString() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = "Apples are round, and Apples are Juicy.";
document.write(str.toString( ));
</script>
</body>
</html>
Production
Apples are round, and Apples are Juicy.