Get String in YYYYMMDD format from JS date object?

后端 未结 30 2244
一个人的身影
一个人的身影 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:32

    date-shortcode to the rescue!

    const dateShortcode = require('date-shortcode')
    dateShortcode.parse('{YYYYMMDD}', new Date())
    //=> '20180304'
    

提交回复
热议问题