本文實例講述了JavaScript使用Math.Min傳回兩個數中較小數的方法。分享給大家供大家參考。具體如下:
下面JavaScript透過Math.Min傳回兩個數中較小的那個
<!DOCTYPE html> <html> <body> <p id="demo"> Click the button to return the lowest number of 5 and 10. </p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("demo").innerHTML=Math.min(5,10); } </script> </body> </html>
運行上面程式碼得到數字為5
希望本文所述對大家的javascript程式設計有所幫助。