Moment JS
Example of parsing and formatting a Date with Moment JS.
by HemalathaThanigaivel
HTML
<script src="http://momentjs.com/downloads/moment.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.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.unix(1567601347192).format('YYYY-MM-DD'))