<h1>Math 數學物件的屬性值</h1> 自然數: <script>document.write(Math.E);</script><br /> e 為底的 2 的對數:<script>document.write(Math.LN2);</script><br /> e 為底的 10 的對數:<script>document.write(Math.LN10);</script><br /> 圓周率:<script>document.write(Math.PI);</script><br /> 2 的平方根<script>document.write(Math.SQRT2);</script><br /> </body> </html>