Math对象

2018-08-09  本文已影响0人  Queen_9999

<script>

 var num=20.19;
 console.log(Math.round(num));   //Math.round() 四舍五入整数
 
 console.log(Math.random());     //Math.random() 从0到1之间随机获得一个数

console.log(Math.random()*10);   //Math.random() 从0到10之间随机获得一个数

console.log(Math.floor(Math.random()*10));   //Math.floor(Math.random()*10))  从0到10之间随机获得一个整数

console.log(Math.floor(Math.random()*100));   //Math.floor(Math.random()*10))  从0到100之间随机获得一个整数

var a=2.856;
console.log(Math.floor(a));     //Math.floor()    除去小数点,不四舍五入

console.log(Math.PI);          //Math.pt 圆周率

 </script>
上一篇下一篇

猜你喜欢

热点阅读