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