In my browser
new Date("05/06/2013")
is treated as M/D/YY
. So above date will 5th of June.
I am using the US date format. I believe JavaScript lets the browser decide the locale. But how do I check what locale the browser users at runtime?
Thanks.