Dayjs 克隆
所有 Day.js 对象都是不可变的。不过,如果你需要的话,dayjs#clone
可以创建当前对象的克隆。
¥All Day.js objects are immutable. Still, dayjs#clone
can create a clone of the current object if you need one.
var a = dayjs()
var b = a.clone()
// a and b are two separate Day.js object
在 Day.js 对象上调用 dayjs()
也会克隆它。
¥Calling dayjs()
on a Day.js object will clone it as well.
var a = dayjs()
var b = dayjs(a)