扫码一下
查看教程更方便
toSource() 方法返回字符串“Math”。但是这种方法不适用于 IE。
该方法的语法如下:
Math.toSource()
无
返回字符串“Math”。
除IE之外 所有主流浏览器都支持 toSource() 方法。
<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