Look at the internals of the Date class and you will see that you can extract all the bits (date, month, year, hour, etc).
http://www.w3schools.com/jsref/jsref_obj_date.asp
For something like Fri 23:00 1 Feb 2013
the code is like:
date = new Date();_x000D_
_x000D_
weekdayNames = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'];_x000D_
monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];_x000D_
var dateString = weekdayNames[date.getDay()] + " " _x000D_
+ date.getHours() + ":" + ("00" + date.getMinutes()).slice(-2) + " " _x000D_
+ date.getDate() + " " + monthNames[date.getMonth()] + " " + date.getFullYear();_x000D_
_x000D_
console.log(dateString);
_x000D_
**** Modified 2019-05-29 to keep 3 downvoters happy