<script type="text/javascript">
function demo(){
var a=3.3;
var b=-1;
var c=(2,3);
var d=8.9;
var math=Math.random();
/*document.write(Math.floor(a)+"<br/>");
document.write(Math.floor(b)+"<br/>");
document.write(Math.floor(c)+"<br/>");
document.write(Math.floor(d));
document.write(Math.ceil(a)+"<br/>");
document.write(Math.ceil(b)+"<br/>");
document.write(Math.ceil(c)+"<br/>");
document.write(Math.ceil(d));
document.write(Math.round(a)+"<br/>");
document.write(Math.round(b)+"<br/>");
document.write(Math.round(c)+"<br/>");
document.write(Math.round(d));
alert(math*10); */
document.write(Math.abs(b));
document.write(Math.pow(c));
}
demo();
</script>
Math.pow(x,y);表示x的y次方
Math.abs是绝对值。
你这一段代码对我记忆所有的函数关系很有帮助,谢谢你~