Moment JS
Example of parsing and formatting a Date with Moment JS.
HTML
<script src="https://momentjs.com/downloads/moment.js"></script>
JavaScript
// Moment JS - Formatting Guide: http://momentjs.com/docs/#/parsing/string-format/
//console.log(moment('2014-08-20 15:30:00').format('MM/DD/YYYY h:mm a')); // 08/20/2014 3:30 pm
console.log(moment("1561228200000").format('DD-MMM-YYYY').toString());