jquery/javascript convert date string to date

前端 未结 6 461
抹茶落季
抹茶落季 2020-12-05 13:11

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?

6条回答
  •  无人及你
    2020-12-05 13:50

    Use moment js for any date operation.

    https://momentjs.com/

    console.log(moment("Sunday, February 28, 2010").format('MM/DD/YYYY'));

提交回复
热议问题