I am saving current date in mongodb with new Date(new Date().toDateString()) and i give my field type Date. But mongodb is storing it like this.
2018-12-03T12:00:00.000-06:30
I want it to store with timezone and time equals to 00:
2018-12-03T00:00:00.000-00:00
How can i acheive it in mongodb?