这个怎么来的,求各位大神帮忙解释下,谢谢
补充右边编辑器代码,在script标签内,使用random ()方法和round(),计算不大于10的整数。 <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Math </title> <script type="text/javascript"> document.write(Math.round(Math.random()*10)); </script> </head> <body> </body> </html>
random()*10
这个怎么来的,求各位大神帮忙解释下,谢谢