Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Format date time JavaScript

How to format date and time like this in JavaScript ?

March 05, 2012 @ 14:30 (UTC - 9:30)

I use this code to calculate EST time :

function getDate() {
    var now = new Date();
  var  utc = now.getTime() + (now.getTimezoneOffset() * 60000);

    return new Date(utc + (3600000 * -4));
}
like image 480
Shahin Avatar asked Jun 24 '26 14:06

Shahin


2 Answers

I use the date-time-format that Tats recommended because doing it manually is a huge PIA.

var yourDate = dateFormat(getDate(), "mmmm dd, yyyy @ HH:MM) + "(UTC -9:30)";

Keep in mind this isn't Daylight Savings aware.. and you are asking for UTC -9:30 in your format, but your function converts to -4. Also, I believe that now.getTime returns in UTC.. so you can just add your difference there.

JavaScript Date Format

like image 189
whiteatom Avatar answered Jun 26 '26 03:06

whiteatom


Check out date.js! It's a really powerful little library for working with Dates in JavaScript.

To get today's date in EST, you can do something like...

var today = new Date();
today.toString();         // outputs "Wed Apr 11 2012 15:40:40 GMT-0500 (CDT)"


today.setTimezone("EST");
today.toString();         // outputs "Wed Apr 11 2012 14:40:40 GMT-0500 (CDT)"

Also, its worth mentioning to checkout moment.js. I think the two libraries complement each other.

like image 32
Hristo Avatar answered Jun 26 '26 02:06

Hristo



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!