|
|
Math.max() JavaScript math function |
We can use Math.max() JavaScript math function to get highest value from a set of numbers. Here is the syntax
Math.max(x1,x2,x3,….xn)
Here are some sample codes.
<script language='JavaScript' type='text/JavaScript'>
<!--
document.write(Math.max(3,12,4,14,7,5)); // output is 14
document.write("<br>");
document.write(Math.max(-5,6,-22,2,-20)); // output is 6
document.write("<br>");
document.write(Math.max(-12,-23,-3)); // output is -3
//-->
</script>
Found anything wrong or wants to improve the code by adding more features? Post your short comment here or use the Forum
| |
| | |
|
|
|
|
|