vấn đề là hàm mũi tên của bạn sử dụng từ vựng này https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions
thay đổi
userSchema.pre("save", (next) => {
const currentDate = new Date
this.updated_at = currentDate.now
next()
})
đến
userSchema.pre("save", function (next) {
const currentDate = new Date()
this.updated_at = currentDate.now
next()
})