Math对象

Math对象

Math.PI			// 圆周率
Math.random()// 生成随机数,范围[0,1)
Math.floor()/Math.ceil()// 向下取整/向上取整
Math.round()	// 取整,四舍五入
Math.abs()		// 绝对值
Math.max()/Math.min()// 求最大和最小值

Math.sin()/Math.cos()// 正弦/余弦
Math.power()/Math.sqrt() // 求指数次幂/求平方根
//1-10随机数
Math.ceil(Math.random()*10)
Math.floor(Math.random()*10+1)
posted @ 2021-09-02 17:23  黄哈哈。  阅读(21)  评论(0编辑  收藏  举报