I know that I can set Date.now as a default value in a mongoose schema, but what other Javascript date types or are all dates automatically converted to mongodb´s standard format - ISOdate?
Are there anything I should be concerned about when it comes to storing dates?
dates: {
created: {type: Date, default: Date.now},
}
Thanks