JavaScript中的Math

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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]JavaScript中的Array

javascript获取html表单中的值?

JavaScript中的对象

javascript JavaScript中的枚举和词典,循环/枚举javascript对象

javascript中的DOM

JavaScript中的内置函数