当前位置:编程学习 > JAVA >>

javascript中的Math

<script> 
alert(Math.round(1.4));//值为1;最接近的整数  
alert(Math.round(1.6));//值为2;最接近的整数  
alert(Math.floor(1.6));//值为1;  
alert(Math.floor(-1.6));//值为-2;  
alert(Math.ceil(1.6));//值为2  
alert(Math.ceil(1.1));//值为2  
alert(Math.random()*10);//获得0~10的随机数  
alert(Math.abs(-1));//值为1,获得绝对值  
</script> 
<script>
alert(Math.round(1.4));//值为1;最接近的整数
alert(Math.round(1.6));//值为2;最接近的整数
alert(Math.floor(1.6));//值为1;
alert(Math.floor(-1.6));//值为-2;
alert(Math.ceil(1.6));//值为2
alert(Math.ceil(1.1));//值为2
alert(Math.random()*10);//获得0~10的随机数
alert(Math.abs(-1));//值为1,获得绝对值
</script>
可以把代码复制粘贴运行下,更清晰。
 

摘自 cangkukuaimanle的专栏
 

补充:web前端 , JavaScript ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,