2013年8月3日 星期六

javascript max (example sample e.g. eg)

<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
 
 
7
5
-3
7.3


 

沒有留言:

張貼留言