Get String in YYYYMMDD format from JS date object?

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

    How about Day.js?

    It's only 2KB, and you can also dayjs().format('YYYY-MM-DD').

    https://github.com/iamkun/dayjs

提交回复
热议问题