There are many date formatting packages available for javascript, I've had great success with Steven Levithan's dateformat.
dateFormat(getDate(), "dd mmm yyyy hh:MMtt");
Edit: It also adds a format
method to Date.prototype
, if you enjoy that style:
getDate().format("dd mmm yyyy hh:MMtt");