Javascript Math.toSource()方法
這個方法返回字符串“Math”。但這種方法不能在許多瀏覽器使用,如IE瀏覽器。
語法
Math.toSource() ;
下麵是參數的詳細信息:
-
NA
返回值:
返回字符串 "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