USing moment.js to format date
HTML
<script src="http://momentjs.com/downloads/moment-timezone-with-data.min.js"></script>
<script src="http://momentjs.com/downloads/moment-timezone.js"></script>
<script src="http://momentjs.com/downloads/moment.js"></script>
<span id="date"></span>
JavaScript
//var future = moment().format("dddd, MMMM Do, YYYY, h:MM:ss A");
var future = moment("2015-04-23 13:00", "YYYY-MM-DD HH:mm");
//var future = moment("12-25-2015", "MM-DD-YYYY");
//var future = moment("2015-12-25");
// Saturday, June 9th, 2007, 5:46:21 PM
$('#date').append(future);