学习笔记:学习Javascript的Math对象

废话少说,看结果:

Math.ceil(0)=0
Math.ceil(
0.1)=1
Math.ceil(
-0.9)=0

Math.floor(
0)=0
Math.floor(
0.1)=0
Math.floor(
-0.9)=-1

Math.min(
1,-1)=-1
Math.max(
1,-1)=1

Math.pow(
2,-3)=0.125

Math.random()
=0.5470700571418643

Math.round(
4)=4
Math.round(
4.4999)=4
Math.round(
4.5001)=5
Math.round(
-4)=-4
Math.round(
-4.4999)=-4
Math.round(
-4.5001)=-5

posted on 2007-04-07 12:02 PeakGao 阅读(284) 评论(0)  编辑 收藏 引用 所属分类: Javascript


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理


<2007年4月>
25262728293031
1234567
891011121314
15161718192021
22232425262728
293012345

导航

统计

常用链接

留言簿(9)

随笔分类(67)

随笔档案(65)

搜索

最新评论

阅读排行榜

评论排行榜