Array.toString() : toString : Array JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Array » toString »

 

Array.toString()









The toString() method returns one string that contains all the elements in the array separated with commas.

The toString() method is used to convert an array to a string when the array is used in string context.

The following example forces JavaScript to Use an Array's toString() Method












<html>
    <script language="JavaScript">
    <!--
    colors = new Array("Blue","Green","Red");
    document.write(colors)
    -->
    </script>
</html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Array
» toString