2013年12月15日
摘要: Math对象属性:Math.pow(2,53) //2的53次幂Math.round(.6) //1.0 四舍五入Math.ceil(.6) //1.0 向上取整Math.floor(.6) //0.0 向下取整Math.abs(-5) //5 求绝对值Math.max(a,b,c) //返回最大值Math.min(a,b,c) //返回最小值Math.random() //生成一个大于等于0小于1.0的... 阅读全文
posted @ 2013-12-15 00:09 熏风 阅读(195) 评论(0) 推荐(0) 编辑