Mega Code Archive

 
Categories / JavaScript Tutorial / Math
 

Use Math min the get the minimum value among three

< html> <head> <title>A Simple Page</title> <script language="JavaScript"> <!-- inp1 = 1; inp2 = 2; inp3 = 3; document.write("The smallest number entered was " + Math.min(inp1, inp2, inp3)); //  --> </script> </head> <body> </body> </html>