JavaScript Array toSource (), méthode
La description
Tableau Javascript toSource()La méthode retourne une chaîne représentant le code source du tableau. Cette méthode est prise en charge par Mozilla.
Syntaxe
Sa syntaxe est la suivante -
array.toSource();
Voici le détail des paramètres -
NA
Valeur de retour
Renvoie une chaîne représentant le code source du tableau.
Exemple
<html>
<head>
<title>JavaScript Array toSource Method</title>
</head>
<body>
<script type = "text/javascript">
var arr = new Array("orange", "mango", "banana", "sugar");
var str = arr.toSource();
document.write("Returned string is : " + str );
</script>
</body>
</html>
Production
Returned string is : ["orange", "mango", "banana", "sugar"]