I just want to help with the print date like below.
Thu Sep 06 2018 18:18:26 GMT+0530
I used
console.log(new Date())
but Output of that is
2018-09-06T12:48:25.776Z
So, I don't know how to convert it.
I just want to help with the print date like below.
Thu Sep 06 2018 18:18:26 GMT+0530
I used
console.log(new Date())
but Output of that is
2018-09-06T12:48:25.776Z
So, I don't know how to convert it.
Share Improve this question edited Mar 14, 2019 at 7:13 Mayur asked Sep 6, 2018 at 12:54 MayurMayur 5,0414 gold badges27 silver badges43 bronze badges 1- Checkout this other question and answer How to format a date String – Fernando B Commented Sep 6, 2018 at 13:05
3 Answers
Reset to default 5I used dateformat (npm install --save dateformat):
const dateFormat = require('dateformat');
console.log(dateFormat(new Date(), "ddd mmm dd yyyy HH:MM:ss UTC" ));
Hope it helps.
You could use some third party module to do that, like moment
or date-fns
. Or create the string manually.
For moment
, see this: https://momentjs./docs/#/displaying/
For date-fns
, see this: https://date-fns/v1.28.0/docs/format
For constructing the format manually, take a look at various Date
object methods: https://developer.mozilla/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date
The problem is solved.
new Date().toString();
This line will convert
"2019-02-24T20:11:15.213Z" => "Mon Feb 25 2019 01:38:50 GMT+0530 (India Standard Time)"
Thank you guys for spent the time on my question.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743696994a4491920.html
评论列表(0条)