15 Mar 2015 Tableau : la méthode toString() by webmaster | posted in: javascript | 0 La méthode toString() permet d’afficher le contenu d’un tableau. Le code expliqué <p>La méthode toString() permet d’afficher le contenu d’un tableau.</p> <p id= »demo »></p> <script> var cours = [« Français », « Histoire », « Géographie », « Mathématiques »]; document.getElementById(« demo79 »).innerHTML = cours.toString(); </script>