日期
使用预先存在的原生 Javascript Date
对象创建 Day.js 对象。
¥Create a Day.js object with a pre-existing native Javascript Date
object.
var d = new Date(2018, 8, 18)
var day = dayjs(d)
这将克隆 Date
对象。对 Date
的进一步更改不会影响 Day.js 对象,反之亦然。
¥This clones the Date
object. Further changes to the Date
won't affect the Day.js object, and vice-versa.