javascript对象之内置对象Math使用方法_基础知识
程序员文章站
2022-05-14 14:55:31
...
一、Math.min()和Math.max(),分别返回参数中的最小和最大值
例:
alert(Math.min(1,2,3)) //输出 "1"
alert(Math.max(1,2,3)) //输出 "3"
二、Math.abs(),返回参数的绝对值
例:
alert(Math.abs(-1)) //输出 "1"
三、Math.random(),产生一个0到1的随机数
例:
window.open("http://www.***.com/index.shtml?t="+Math.random) //在url地址后面加上一个值为随即数的参数,能保证页面每次都从服务器上重新拉取,而不是读取缓存。
四、Math.floor(),Math.round(),Math.ceil()
Math.floor():把小数向下舍入成整数 例:alert(Math.floor(1.5)) //输出"1"
Math.round():把小数标准四舍五入成整数 例:alert(Math.round(1.5)) //输出"2"
Math.ceil():把小数向上舍入成整数 例:alert(Math.round(1.5)) //输出"2"
利用这三个函数,在涉及小数计算的时候就非常方便,比如设计如下函数来进行小数处理
function test(num,flag,bit) //参数分别是 要传入的小数"num" 舍入标准(-1,向下;0,标准;1向上)"flag" 保留小数的位数"bit"
{
var n=Math.pow(10,bit);
switch(flag)
{
case -1:return Math.floor(num*n)/n;break;
case 0:return Math.round(num*n)/n;break;
case 1:return Math.ceil(num*n)/n;
}
}
例:
alert(Math.min(1,2,3)) //输出 "1"
alert(Math.max(1,2,3)) //输出 "3"
二、Math.abs(),返回参数的绝对值
例:
alert(Math.abs(-1)) //输出 "1"
三、Math.random(),产生一个0到1的随机数
例:
window.open("http://www.***.com/index.shtml?t="+Math.random) //在url地址后面加上一个值为随即数的参数,能保证页面每次都从服务器上重新拉取,而不是读取缓存。
四、Math.floor(),Math.round(),Math.ceil()
Math.floor():把小数向下舍入成整数 例:alert(Math.floor(1.5)) //输出"1"
Math.round():把小数标准四舍五入成整数 例:alert(Math.round(1.5)) //输出"2"
Math.ceil():把小数向上舍入成整数 例:alert(Math.round(1.5)) //输出"2"
利用这三个函数,在涉及小数计算的时候就非常方便,比如设计如下函数来进行小数处理
复制代码 代码如下:
function test(num,flag,bit) //参数分别是 要传入的小数"num" 舍入标准(-1,向下;0,标准;1向上)"flag" 保留小数的位数"bit"
{
var n=Math.pow(10,bit);
switch(flag)
{
case -1:return Math.floor(num*n)/n;break;
case 0:return Math.round(num*n)/n;break;
case 1:return Math.ceil(num*n)/n;
}
}
下一篇: 反射之通过反射了解集合泛型的本质
推荐阅读
-
JavaScript内置对象math,global功能与用法实例分析
-
python 之 前端开发( JavaScript变量、数据类型、内置对象、运算符、流程控制、函数)
-
JavaScript之数学对象Math
-
Javascript基础知识中关于内置对象的知识
-
Javascript之Math对象详解
-
Javascript 内置对象 Math
-
Javascript学习笔记之 对象篇(四) : for in 循环_基础知识
-
javascript 基础篇3 类,回调函数,内置对象,事件处理_基础知识
-
javascript学习笔记(八) js内置对象_基础知识
-
JavaScript 内置对象属性及方法集合_基础知识