JavaScript Tutorial/Array/toString — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:25, 26 мая 2010
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>