"2018-12-02 11:55:48" can this be changed to 11:55 on December 2nd

problem description: convert the timestamp into the format of 11:55-11:56 on December 2nd
(timestamp: 1543722948000,1543722986000)

Jan.08,2022

//
Date.prototype.Format = function (fmt) {
    var o = {
            "M+": this.getMonth() + 1, // 
            "d+": this.getDate(), // 
            "h+": this.getHours(), // 
            "m+": this.getMinutes(), // 
            "s+": this.getSeconds(), // 
            "q+": Math.floor((this.getMonth() + 3) / 3), // 
            "S": this.getMilliseconds() // 
    };
    if (/(y+)/.test(fmt))
        fmt = fmt.replace(RegExp.$1, (this.getFullYear() + ""));
    for (var k in o)
        if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
    return fmt;
}
new Date(1543722948000).Format('MMdd hh:mm');  //"1202 11:55"
new Date(1543722986000).Format('MMdd hh:mm');  //"1202 11:56"
Menu