js学习总结(4)
作者:互联网
本篇主要介绍Math对象的常用方法
1.Math.abs(值),将值转换为绝对值。比如:
console.log(Math.abs(-567));
打印返回值为567
2.Math.ceil(值),将值向上四舍五入。比如:
console.log(Math.ceil(5.666));
打印返回值为6
3.Math.floor(值),将值向下四舍五入。比如:
console.log(Math.ceil(5.666));
打印返回值为5
4.Math.random(),随机生成0-1范围内的小数。比如:
console.log(Math.random());
打印返回值为随机0-1范围内小数,比如0.6973378142792437
5.Math.round(值),将值四舍五入成最接近的整数。比如:
console.log(Math.round(5.666));
打印返回值为6
标签:总结,console,log,打印,将值,js,学习,返回值,Math 来源: https://www.cnblogs.com/woywan/p/12651989.html