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
4 Answers
Reset to default 4You 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!
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743624156a4480263.html
评论列表(0条)