Round the number
<html>
<body>
<script type="text/javascript">
document.write ( Math.round ( 3.146));
</script>
</body>
</html>
Generate a random number
<html>
<body>
<script type="text/javascript">
document.write ( Math.random ( ));
</script>
</body>
</html>