数学对象:作用:为数学计算提供常量和计算函数
应用:js 算法
var num = 2.9;
Math.floor() //向下取整
Math.ceil() //向上取整
Math.round() // 四舍五入
Math.random() // 出现 0-1随机小数
Math.max() // 返回最大数
日期对象作用:获取当前时间
date.getFullYear() //年
date.getMonth() + 1 //月
date.getDate() //日
date.getDay() //星期
date.getTime() //时间戳