Can anyone please help me get the HH:MM am/pm format instead of HH:MM:SS am/pm.
HH:MM am/pm
HH:MM:SS am/pm
My javascript code is :
Use the Intl.DateTimeFormat library.
function prettyDate2(time){ var date = new Date(parseInt(time)); var options = {hour: "numeric", minute: "numeric"}; return new Intl.DateTimeFormat("en-US", options).format(date); }