使用 max() 来返回两个给定的数中的较大的数
- <html>
- <body>
- <script type="text/javascript">
- document.write(Math.max(5,7) + "<br />")
- document.write(Math.max(-3,5) + "<br />")
- document.write(Math.max(-3,-5) + "<br />")
- document.write(Math.max(7.25,7.30))
- </script>
- </body>
- </html>