Answers for ""format":"yyyy-mm-dd hh:mm""

2

javascript format date yyyy-mm-dd

// yyyy-mm-dd
new Date().toISOString().slice(0, 10)
Posted by: Guest on March-29-2021
2

js get date in yyyy-mm-dd

const yourDate = new Date()
yourDate.toISOString().split('T')[0]
Posted by: Guest on October-21-2021

Code answers related to ""format":"yyyy-mm-dd hh:mm""

Code answers related to "Javascript"

Browse Popular Code Answers by Language