首页 > 代码库 > JavaScript中的Math
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。