jquery date format from yyyy-mm-dd to mm/dd/yyyy code example
Example 1: javascript convert date to yyyy-mm-dd
const formatYmd = date => date.toISOString().slice(0, 10);
formatYmd(new Date());
Example 2: javascript date format mm/dd/yyyy
var date_format = new Date();
document.write(innerHTML = date_format.getMonth()+'/'+ date_format.getDate()+'/'+date_format.getFullYear());
Example 3: javascript date format
const d = new Date('2010-08-05')
const ye = new Intl.DateTimeFormat('en', { year: 'numeric' }).format(d)
const mo = new Intl.DateTimeFormat('en', { month: 'short' }).format(d)
const da = new Intl.DateTimeFormat('en', { day: '2-digit' }).format(d)
console.log(`${da}-${mo}-${ye}`)
Example 4: javascript format date yyyy-mm-dd hh:mm:ss to dd-mm-yyyy hh:mm am/pm
dateString = '2020-04-03 20:30:55';
function formatDate(dateString)
{
var allDate = dateString.split(' ');
var thisDate = allDate[0].split('-');
var thisTime = allDate[1].split(':');
var newDate = [thisDate[2],thisDate[1],thisDate[0] ].join("-");
var suffix = thisTime[0] >= 12 ? "PM":"AM";
var hour = thisTime[0] > 12 ? thisTime[0] - 12 : thisTime[0];
var hour =hour < 10 ? "0" + hour : hour;
var min = thisTime[1] ;
var sec = thisTime[2] ;
var newTime = hour + ':' + min + suffix;
return newDate + ' ' + newTime;
}