EDITED: Guys sorry if I have offended someone by asking such a noob question, as I see someone have "Marked Down" Question for being inappropriate. I have just started learning Javascript myself and this forum is a real lifesaver.

I have a Json timestamp that I would like to convert into simple date time format using javascript.

I need the date and time in the following format : dd-mm-yyyy hr:mn

Here is an example json date from i wish to extract the timestamp: "timestamp": 1326439500

{
   "count": 2,
   "d": [
      {
         "title": "Apple iPhone 4S Sale Cancelled in Beijing Amid Chaos (Design You Trust)",
         "description": "Advertise here with BSA Apple cancelled its scheduled sale of iPhone 4S in one of its stores in China’s capital Beijing on January 13. Crowds outside the store in the Sanlitun district were waiting on queues overnight. There were incidents of scuffle between shoppers and the store’s security staff when shoppers, hundreds of them, were told that the sales [...]Source : Design You TrustExplore : iPhone, iPhone 4, Phone",
         "link": "http://wik.io/info/US/309201303",
         "timestamp": 1326439500,
         "image": null,
         "embed": null,
         "language": null,
         "user": null,
         "user_image": null,
         "user_link": null,
         "user_id": null,
         "geo": null,
         "source": "wikio",
         "favicon": "http://wikio.com/favicon.ico",
         "type": "blogs",
         "domain": "wik.io",
         "id": "2388575404943858468"
      },
      {
         "title": "Apple to halt sales of iPhone 4S in China (Fame Dubai Blog)",
         "description": "SHANGHAI – Apple Inc said on Friday it will stop selling its latest iPhone in its retail stores in Beijing and Shanghai to ensure the safety of its customers and employees. Go to SourceSource : Fame Dubai BlogExplore : iPhone, iPhone 4, Phone",
         "link": "http://wik.io/info/US/309198933",
         "timestamp": 1326439320,
         "image": null,
         "embed": null,
         "language": null,
         "user": null,
         "user_image": null,
         "user_link": null,
         "user_id": null,
         "geo": null,
         "source": "wikio",
         "favicon": "http://wikio.com/favicon.ico",
         "type": "blogs",
         "domain": "wik.io",
         "id": "16209851193593872066"
      }
   ]
} 

Thanks is advance.

link|improve this question

var date=new Date(timestamp)var hours = date.getHours(); // minutes part from the timestamp var minutes = date.getMinutes(); // seconds part from the timestamp var seconds = date.getSeconds(); // will display time in 10:30:23 format var formattedTime = hours + ':' + minutes + ':' + seconds; – Rajat Singhal Jan 20 at 20:12
@RajatSinghal that will only give out the time wouldn't it? – praneybehl Jan 20 at 20:22
You can get date,year anything from Date object...instead of gethours use getYear... – Rajat Singhal Jan 20 at 20:31
json does NOT have timestamps. It has no notion of dates/times - it's just a transport encapsulation. That number is a timestamp of whatever language generated the json text. – Marc B Jan 20 at 20:36
@RajatSinghal Thanks mate it helped. – praneybehl Jan 20 at 20:41
show 1 more comment
feedback

3 Answers

up vote 0 down vote accepted

The date is being returned as milliseconds since epoch. The code below creates a JS date object:

var d = new Date(1245398693390);
var formattedDate = d.getDate() + "-" + (d.getMonth() + 1) + "-" + d.getFullYear();
var hours = (d.getHours() < 10) ? "0" + d.getHours() : d.getHours();
var minutes = (d.getMinutes() < 10) ? "0" + d.getMinutes() : d.getMinutes();
var formattedTime = hours + ":" + minutes;

formattedDate = formattedDate + " " + formattedTime;

Here's a working fiddle.

link|improve this answer
Thanks mate for a quick example. But that give me this whole: 2009-06-19T08:04:53.390Z and I wanted something like dd-mm-yyyy hr:mn – praneybehl Jan 20 at 20:29
@praneybehl, I misunderstood. You simply want the time? – James Hill Jan 20 at 20:30
no mate I need the date time in this format : dd-mm-yyyy hr:mn – praneybehl Jan 20 at 20:32
@praneybehl Once you have the Date object you can use getDate(), getDay(), getMonth(), etc to build your formatted string. There are scripts floating around which extend Date.prototype to include format(formatString) – antisanity Jan 20 at 20:34
@praneybehl, I think you should add that information to your original question - it says nothing about date formatting. – James Hill Jan 20 at 20:34
show 9 more comments
feedback
<script>
var timestamp=1326439320;
var date=new Date(timestamp);
var hours = date.getHours(); // minutes part from the timestamp
var minutes = date.getMinutes(); // seconds part from the timestamp
var seconds = date.getSeconds(); // will display time in 10:30:23 format
 var formattedTime = hours + ':' + minutes + ':' + seconds;
alert(formattedTime);
</script>
link|improve this answer
Thanks it helped – praneybehl Jan 20 at 20:46
feedback

Extend Date's prototype to include a format function like so (or find or create your own):

Date.prototype.format = function (formatString) {
    // Returns a formatted date string
    var month = this.getMonth() + 1,
    day = this.getDate(),
    year = this.getFullYear(),
    hours24 = this.getHours(),
    hours = (hours24 === 0 ? 12 : hours24 > 12 ? hours24 - 12 : hours24),
    meridiem = hours24 >= 12 ? "PM" : "AM",
    minutes = this.getMinutes(),
    seconds = this.getSeconds();

    formatString = formatString.replace(/(MM)/g, month.padLeft(2, '0'));
    formatString = formatString.replace(/(M)/g, month);
    formatString = formatString.replace(/(dd)/g, day.padLeft(2, '0'));
    formatString = formatString.replace(/(d)/g, day);
    formatString = formatString.replace(/(yyyy)/ig, year);
    formatString = formatString.replace(/(yy)/ig, year.toString().substring(2, 4));
    formatString = formatString.replace(/(hh)/g, hours.padLeft(2, '0'));
    formatString = formatString.replace(/(h)/g, hours);
    formatString = formatString.replace(/(HH)/g, hours24.padLeft(2, '0'));
    formatString = formatString.replace(/(H)/g, hours24);
    formatString = formatString.replace(/(mm)/g, minutes.padLeft(2, '0'));
    formatString = formatString.replace(/(m)/g, minutes);
    formatString = formatString.replace(/(ss)/g, seconds.padLeft(2, '0'));
    formatString = formatString.replace(/(s)/g, seconds);
    formatString = formatString.replace(/(tt)/g, meridiem.toLowerCase());
    formatString = formatString.replace(/(TT)/g, meridiem);

    return formatString;
};

Then, to convert the timestamp into the desired format, dd-mm-yyyy hr:mn (as mentioned in your comment), you'd do the following:

var dateString = new Date(timestamp).format("dd-MM-yyyy hh:mm");

[Edit] Here's the accompanying pad function:

Number.prototype.padLeft = function (width, padChar) {
    // Returns a padded string
    padChar = padChar || ' ';
    var value = this.toString();
    while (value.length < width) {
        value = padChar + value;
    }
    return value;
};
link|improve this answer
WOW that is very comprehensive. Appreciate you taking the time to explain this. I can't vote right now as someone marked my question down or I would have voted on your answer. Thanks again – praneybehl Jan 20 at 20:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.