JavaScript Tutorial/Math/toSource

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

Math.toSource()

The toSource() method creates a copy of the object.

It returns a string representation of an object, which can be passed to the eval method to create a copy of the object.



<html>
    <body>
    <script language="JavaScript">
    <!--
    function copy(){
        var result = Math.toSource(Math.E);
        document.form1.answer.value = result;
    }
    -->
    </script>
    <form name=form1>
    Click on the button to create a copy of a Math object.
    <br><br>
    <input type="button" value="Copy" onClick="copy()">
    <br>
    The result of toSource is:
    <input type="text" name="answer" size=20>
    </form>
    </body>
    </html>