Vish
Vish

Reputation: 280

Milliseconds to specific date format in javascript

enter image description here Hello All, I have time in milliseconds and I want convert it into "dd/mm/yyyy hh:mm:ss" I have tried the following code in javascript but I failed to do it, What I get is "Thu Jul 07 2016 16:22:10 GMT+0530 (IST)" this full timestamp, Code I tried is as follows:

self.users[i].lastLoggedIn = (new Date(self.users[i].lastLoggedIn)).toString("mm/dd/yyyy hh:mm:ss");

Where am I going wrong? for reference I have attached one screen shot of the same. Thank you..!!!

Upvotes: 0

Views: 71

Answers (1)

Yotam Ofek
Yotam Ofek

Reputation: 2408

I suggest using moment.js for handling dates in Javascript. It is available for browsers, server-side engines and so on.

moment(self.users[i].lastLoggedIn).format("mm/dd/yyyy hh:mm:ss")

Upvotes: 1

Related Questions