码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript中的Math

时间:2016-09-21 23:45:34      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:javascript中的math

//math()
//Pl
document.write(Math.PI+‘<br>‘);
var math=10.1;
var math1=10.9;
//四舍五入round()
document.write(Math.round(math)+‘<br>‘);
//进一法  ceil
document.write(Math.ceil(math)+"<br>");
//退一法  floor
document.write(Math.floor(math)+"<br>");
//获取最小值min()
document.write(Math.min(1,10)+‘<br>‘);
//获取最大值max()
document.write(Math.max(10,1)+‘<br>‘);
//随机数random()
document.write(Math.random());


本文出自 “web” 博客,请务必保留此出处http://web66.blog.51cto.com/10442650/1854948

JavaScript中的Math

标签:javascript中的math

原文地址:http://web66.blog.51cto.com/10442650/1854948

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!