js数学对象

2018-08-29 10:53:25 浏览数 (1)

//取绝对值 Math.abs() 整数返回本身,负数返回相反数 0还是0

document.write(Math.abs(-5) '<br /> ');

//向下取整 Math.floor   取离他最近的一个数  5返回5 5.1返回5   5.9也返回5

document.write(Math.floor(6.9) '<br />  ');

//向上取整 Math.ceil        取离他最近的大一个数  5返回5 5.1返回6   5.9也返回6

document.write(Math.ceil(5.1) '<br />   ');

//四舍五入Math.round 返回整数 第一位小数满4进1

document.write(Math.round(5.1) '<br />  ');

document.write(Math.round(5.48888) '<br />  ');

0 人点赞