数组
您可以传入一个数组来创建一个 Day.js 对象,数组和结构和 new Date()
十分类似。
提示
这依赖 ArraySupport 插件,才能正常运行
javascript
dayjs.extend(arraySupport);
dayjs([2010, 1, 14, 15, 25, 50, 125]); // February 14th, 3:25:50.125 PM
dayjs.utc([2010, 1, 14, 15, 25, 50, 125]);
dayjs([2010]); // January 1st
dayjs([2010, 6]); // July 1st
dayjs([2010, 6, 10]); // July 10th
dayjs({})
返回当前时间。
注意类似new Date(year, month, date)
, 月份从 0 开始计算。