About 51 results
Open links in new tab
  1. How do I format a date in JavaScript? - Stack Overflow

    How do I format a Javascript Date object as a string? (Preferable format: 10-Aug-2010)

  2. How do I get the current date in JavaScript? - Stack Overflow

    Oct 7, 2009 · Use new Date() to generate a new Date object containing the current date and time.

  3. javascript - How to add days to Date? - Stack Overflow

    Feb 19, 2009 · How to add days to current Date using JavaScript? Does JavaScript have a built in function like .NET's AddDay()?

  4. Compare two dates with JavaScript - Stack Overflow

    The easiest way to compare dates in javascript is to first convert it to a Date object and then compare these date-objects. Below you find an object with three functions:

  5. Is the Javascript date object always one day off?

    In my Javascript app I have the date stored in a format like so: 2011-09-24 Now when I try using the above value to create a new Date object (so I can retrieve the date in a different format), the...

  6. Parsing a string to a date in JavaScript - Stack Overflow

    How can I convert a string to a Date object in JavaScript? var st = "date in some format" var dt = new Date (); var dt_st = // st in Date format, same as dt.

  7. Javascript Date - set just the date, ignoring time?

    Feb 11, 2017 · Javascript Date - set just the date, ignoring time? Asked 13 years, 6 months ago Modified 1 year, 6 months ago Viewed 282k times

  8. Getting current date and time in JavaScript - Stack Overflow

    I have a script that prints the current date and time in JavaScript, but the DATE is always wrong. Here is the code: var currentdate = new Date(); var datetime = "Last Sync: " + currentdate.

  9. javascript - date = new Date (); date.valueOf () vs Date.now () - Stack ...

    new Date().getTime() Functionally equivalent to new Date().valueOf() Date.now() Functionally equivalent to the 2 methods above As mentioned in the comments and MDN links, Date.now() is not supported …

  10. How to initialize a JavaScript Date to a particular time zone

    I have date time in a particular timezone as a string and I want to convert this to the local time. But, I don't know how to set the timezone in the Date object. For example, I have Feb 28 2013 7:...