1

How to get Date Format as

 Fri Dec 03 2014 00:00:00 GMT+0530 (IST)

Todays date with time 00:00:00 in javascript ? Any help appreciated

Shreyas Achar
  • 1,407
  • 5
  • 36
  • 63
  • 1
    possible duplicate of [Where can I find documentation on formatting a date in JavaScript](http://stackoverflow.com/questions/1056728/where-can-i-find-documentation-on-formatting-a-date-in-javascript) – Alex Dec 03 '14 at 09:11

1 Answers1

5
var myDate = new Date(); 
    myDate.setHours(0,0,0);

    alert(myDate);

jsfiddle http://jsfiddle.net/nrud7j8v/2

about javascript setHours() method http://www.w3schools.com/jsref/jsref_setHours...

Alien
  • 3,658
  • 1
  • 16
  • 33