js-Math对象
Posted LPEIL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js-Math对象相关的知识,希望对你有一定的参考价值。
1.Math对象的属性
2.min()和max()方法
console.log(Math.max(4,85,3))//=>85 let arr = [2,6,8,2,120]; console.log(Math.max.apply(Math,arr))//=>120
3.舍入方法
Math.ceil()方法执行向上舍入,即它总是将数值向上舍入为最接近的整数
Math.floor()方法向下舍入,即它总是将数值向下舍入为最接近的整数
Math.round()方法标准舍入,即它总是将数值四舍五入为最接近的整数
console.log(Math.round(3.25))//=>3 console.log(Math.ceil(3.25))//=>4 console.log(Math.floor(3.25))//=>3
4.random()方法
该方法返回一个大于等于0小于1的随机数
利用下面公式,可以从某个整数范围内随机选择一个值
值= Math.floor(Math.random()*可能值的总数+第一个可能的值)
//1-10的整数 console.log(Math.floor(Math.random()*10+1))
以上是关于js-Math对象的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段12——JavaScript的Promise对象
错误代码:错误域 = NSCocoaErrorDomain 代码 = 3840“JSON 文本没有以数组或对象和允许未设置片段的选项开头。”
jquery 对象的 heightinnerHeightouterHeight 的区别以及DOM 元素的 clientHeightoffsetHeightscrollHeightoffset(代码片段