JavaScript – Math toSource方法

JavaScript – Math toSource方法

描述

该方法返回字符串”Math”。但是该方法不适用于IE。

语法

其语法如下 –

Math.toSource();

返回值

返回字符串”Math”。

示例

尝试以下示例程序。

<html>   
   <head>
      <title>JavaScript Math toSource() Method</title>
   </head>

   <body>      
      <script type = "text/javascript">
         var value = Math.toSource( );
         document.write("Value : " +  value );
      </script>      
   </body>
</html>

输出

Value: Math

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程