Max number: get max number from two inputs : Math « Development « JavaScript DHTML
- JavaScript DHTML
- Development
- Math
Max number: get max number from two inputs
<html>
<body>
<script type="text/javascript">
document.write(Math.max(2,4))
</script>
</body>
</html>
Related examples in the same category