Format date time JavaScript

瘦欲@ 提交于 2019-11-29 08:04:19

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

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.

If you do just

var now = new Date();
document.write(now);

you will get

Wed Mar 14 2012 20:53:06 GMT+0000 (GMT Standard Time)

Link1, Link2.

Is it what you want?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!