Guest User

Untitled

a guest
Jan 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. (function () {
  2. return ['Jan.', 'Feb.', 'Mar.',
  3. 'Apr.', 'May', 'Jun.',
  4. 'Jul.', 'Aug.', 'Sep.',
  5. 'Oct.', 'Nov.', 'Dec.'][this.getMonth()] + " " +
  6. (function (d) {
  7. var s = d.toString(), l = s[s.length-1];
  8. return s+(['st','nd','rd'][l-1] || 'th');
  9. })(this.getDate()) + ", " +
  10. this.getFullYear() + " " +
  11. this.getHours() + ":" + ("0" + this.getMinutes()).slice(-2);
  12. }).call(new Date())
Add Comment
Please, Sign In to add comment