JavaScript Tutorial/Array/valueOf

Материал из Web эксперт
Версия от 08:25, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Array.valueOf()

The valueOf() method returns the primitive value of the object.

This method returns the array elements separated by commas.

If an array contains another array, the contents are flattened when this method is used.



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


Use array.valueOf with a two dimensional array

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