This is a moment.js version. The library can be found at http://momentjs.com/
//specify the date string and the format it's initially in
var mydate = moment('15/11/2000', 'DD/MM/YYYY');
//format that date into a different format
moment(mydate).format("MM/DD/YYYY");
//outputs 11/15/2000