美文网首页
Math对象的两个方法---基础案例5

Math对象的两个方法---基础案例5

作者: hi__world | 来源:发表于2018-09-26 15:19 被阅读0次
    image.png

    答案一:

    <script>
            document.write(Math.pow(((23+Math.pow(5,7))/4),2))//结果:381694369
       </script>
    

    答案二:

     <script>
           document.write(Math.floor(Math.random()*10))
                       //Math.random() 随机数0.1-1  然后让他乘以10,就得到1-10,但都保留好几位小数
                       // Math.floor()  然后用这个方法 向下取整
       </script>
    

    相关文章

      网友评论

          本文标题:Math对象的两个方法---基础案例5

          本文链接:https://www.haomeiwen.com/subject/szdxwftx.html