Display relative time in hour, day, month and year
- by JohnJohnGa
I wrote a function
toBeautyString(epoch) : String
which given a epoch, return a string which will display the relative time from now in hour and minute
For instance:
// epoch: 1346140800 -> Tue, 28 Aug 2012 05:00:00 GMT
// and now: 1346313600 -> Thu, 30 Aug 2012 08:00:00 GMT
toBeautyString(1346140800)
-> "2 days and 3 hours ago"
I…