rightsna
rightsna

Reputation: 45

form JSON date to JS date

My JSON date data is like below. how to convert to JS date?

"date":{"sec":1320919381,"usec":507000}}

is it ok?

new Date(obj["date"])

Upvotes: 1

Views: 607

Answers (1)

James
James

Reputation: 112000

new Date(obj.date.sec * 1000); // pass milliseconds

Upvotes: 4

Related Questions