Format JavaScript date as yyyy-mm-dd

后端 未结 30 3157
再見小時候
再見小時候 2020-11-22 01:28

I have a date with the format Sun May 11,2014. How can I convert it to 2014-05-11 using JavaScript?

30条回答
  •  孤城傲影
    2020-11-22 02:05

    No library is needed

    Just pure JavaScript.

    The example below gets the last two months from today:

    var d = new Date()
    d.setMonth(d.getMonth() - 2);
    var dateString = new Date(d);
    console.log('Before Format', dateString, 'After format', dateString.toISOString().slice(0,10))

提交回复
热议问题