這個方法返回字串“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