Time Sorting Ascending or Descending Order in Javascript

Javascript
ascending order
descending order

I have an object like 

var details = [{id:1,fromtime:10:00},{id:2,fromtime:20:00},{id:3,fromtime:15:00}];

I want show the records by from time order.  Here is the javascript code for time sorting.

function SortByTime(a,b){
    var fromtime1 = a.fromtime;
    fromtime1 = parseInt(fromtime1.trim().replace(':','')); // 900				
    var	fromtime2 = b.fromtime;
    fromtime2 = parseInt(fromtime2.trim().replace(':','')); // 1100
    if(fromtime1 > fromtime2){
        return ((fromtime1 < fromtime2) ? -1 : ((fromtime1 > fromtime2) ? 1 : 0));					
    }
}

Here is the code for calling above function.

details.sort(SortByTime);

 

 

You might also like:

How to redirect one page to another page in php

20-03-2017 redirect php

How to upload file by using request module

18-03-2017 request module node js

Using slice remove last two characters from given string

07-03-2017 slice remove

Navigate to another page using java script

06-03-2017 javascript redirection navigation

Send Mail in Node Js

21-02-2017 node js mail npm module