内置对象 内置对象就是JS提供的一套工具箱,我们通过内置可以很方便的进行一些操作. Math对象: Math.ceil() //向上取整,天花板 Math.floor() //向下取整,地板 Math.round() //四舍五入 Math.random() :返回0-1之间的一个随机数,[0,1) 能取到0,取不到1 Math.abs() :取绝对值 Math.pow(num, power) :求num的power次幂 Math.sqrt(num) :对num开平方 Date对象: "2016…