Mega Code Archive

 
Categories / JavaScript Tutorial / Array
 

Two dimensional array toString

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