Hi I have a json which I am getting some data. There the time format I am getting is like
1367023443000
I want to convert this to the Normal PST format. Ive tried using Javascript`s Date method. Passed the Unix time to the Date method,
var now = new Date(1367023443000);
I am getting only IST value, But not PST. What should I do here to convert the Unix timestamp to PST?