from : 5/19/2011
5/19/2011
to : 2011-05-19
2011-05-19
I need it to raise an error when it finds that it cannot be real like 5/40/2011 etc. Are there any libraries that do it well?
5/40/2011
maybe this is not best solution, but you can try the simple way like:
var from="5/19/2011"; var temp = from.split("/"); var to = temp[2] + "-" + temp[0] + "-" + temp[1];
1.4m articles
1.4m replys
5 comments
57.0k users