Answers for "dd-mm-yyyy hh:mm:ss to date javascript"

2

javascript format date yyyy-mm-dd

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

javascript format date object to yyyy-mm-dd

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

convert a new date standard to a yyy-mm-dd format in javascript

function convert(str) {
  var date = new Date(str),
    mnth = ("0" + (date.getMonth() + 1)).slice(-2),
    day = ("0" + date.getDate()).slice(-2);
  return [date.getFullYear(), mnth, day].join("-");
}

console.log(convert("Thu Jun 09 2011 00:00:00 GMT+0530 (India Standard Time)"))
//-> "2011-06-08"
Posted by: Guest on June-08-2021

Code answers related to "dd-mm-yyyy hh:mm:ss to date javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language