Random number from 0 to 10: a random number from 0 to 10 using the random() and round()
<html> <body> <script type="text/javascript"> no=Math.random()*10 document.write(Math.round(no)) </script> </body> </html>