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)
作者:黄哈哈。
原文链接:https://www.cnblogs.com/jiajia-hjj/p/15219743.html
本博客大多为学习笔记或读书笔记,本文如对您有帮助,还请多推荐下此文,如有错误欢迎指正。