I have a date string \"Sunday, February 28, 2010\" that I would like to convert to a js date object formatted @ MM/DD/YYYY but don\'t know how. Any suggestions?
Use moment js for any date operation.
https://momentjs.com/
console.log(moment("Sunday, February 28, 2010").format('MM/DD/YYYY'));