so I have define an end_time field in my document as
end_time: {
type: Date
},`
So when I update it to
end_time: ''
It gets stored as null but when I display it to user it gives
06 march 1970 // which i guess is the default date
So how to set a null field so that I don't have such problems