最小:console.log(Math.min(1, 2, 3));
最大:console.log(Math.max(1, 2, 3));
取最接近的向上整数:console.log(Math.ceil(1.111)); //2
得到最接近的向下整数:console.log(Math.floor(1.555)); //1
四舍五入处理:console.log(Math.round(1.5)); //2
解释:random 用于返回 >=0 且 <1 的随机数
Math.random()*100 // 表示0-100的随机数
let now = new Date();
let now = new Date(2028, 4, 5, 1, 22, 16);
或let now = new Date('2028-02-22 03:25:02');
对象 | 介绍 |
---|---|
Date() | 返回当日的日期和时间。 |
getFullYear() | 从 Date 对象以四位数字返回年份。 |
getMonth() | 从 Date 对象返回月份 (0 ~ 11)。 |
getDate() | 从 Date 对象返回一个月中的某一天 (1 ~ 31)。 |
getDay() | 从 Date 对象返回一周中的某一天 (0 ~ 6)。 |
getHours() | 返回 Date 对象的小时 (0 ~ 23)。 |
getMinutes() | 返回 Date 对象的分钟 (0 ~ 59)。 |
getSeconds() | 返回 Date 对象的秒数 (0 ~ 59)。 |
getMilliseconds() | 返回 Date 对象的毫秒(0 ~ 999)。 |
getTime()
: 返回 1970 年 1 月 1 日至今的毫秒数。