最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How do I get Date(); to show the time in JavaScript right? - Stack Overflow

programmeradmin3浏览0评论

I'm making a Discord bot and want it to be able to say the time it was started, but when I use Date(); it returns with a pletely different time than my puter's local time, which makes it really difficult to tell when it actually started.

The code I'm using :

var currentdate = new Date();
console.log(currentdate)

The time I'm getting:

2017-10-15T10:37:14.912Z

I'm making a Discord bot and want it to be able to say the time it was started, but when I use Date(); it returns with a pletely different time than my puter's local time, which makes it really difficult to tell when it actually started.

The code I'm using :

var currentdate = new Date();
console.log(currentdate)

The time I'm getting:

2017-10-15T10:37:14.912Z
Share Improve this question edited Oct 15, 2017 at 12:17 Ivar 6,88712 gold badges56 silver badges67 bronze badges asked Oct 15, 2017 at 10:46 kittrzkittrz 811 gold badge3 silver badges13 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 4

You can try this:

var d = new Date();
console.log(d.toLocaleTimeString());
console.log(d.toLocaleString());
console.log(d.toLocaleDateString());

you can try following code

var currentdate = new Date(); 
var datetime = "Date Time: " + currentdate.getDate() + "/"
    + (currentdate.getMonth()+1)  + "/" 
    + currentdate.getFullYear() + " @ "  
    + currentdate.getHours() + ":"  
    + currentdate.getMinutes() + ":" 
    + currentdate.getSeconds();
console.log(datetime)

Click here for more information

Consider using moment.js

It's a great module for time related stuff. If you're using a remote server chances are the time you're seeing is GMT+0.

With moment you can find your global time zone and add that as an offset when displaying the time. There are also handy features for controlling the display format.

For example to display in my time zone I just use

moment().utcOffset(-4).format("dddd, MMMM Do YYYY, h:mm:ss a"); // "Sunday, February 14th 2010, 3:25:50 pm"

https://momentjs./docs/#/manipulating/utc-offset/

What am i using for displaying full date?

var d = new Date,
    dformat = [d.getMonth()+1,
    d.getDate(),
    d.getFullYear()].join('/')+' '+
    [d.getHours(),
    d.getMinutes(),
    d.getSeconds()].join(':');

I use d in the area i want to set the date!

发布评论

评论列表(0)

  1. 暂无评论