Get String in YYYYMMDD format from JS date object?

后端 未结 30 2245
一个人的身影
一个人的身影 2020-11-22 10:47

I\'m trying to use JS to turn a date object into a string in YYYYMMDD format. Is there an easier way than concatenating Date.getYear()

30条回答
  •  遥遥无期
    2020-11-22 11:42

    You can use the toISOString function :

    var today = new Date();
    today.toISOString().substring(0, 10);
    

    It will give you a "yyyy-mm-dd" format.

提交回复
热议问题