In MongoDB I've stored dates prior to B.C has String type. How can I stored in ISODate()
type ?
I've tried this :
db.test.insert({"date" : new ISODate("-63-09-23") })
but I get an error :
uncaught exception: invalid ISO date
Thanks for your help !