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:

Convert and download html to pdf without saving file

28-10-2018 node js convert html to pdf pdf download pdf without saving

Sanitization in java sript

14-03-2017 sanitization java script

How to get current date and time (yyyy-mm-dd H:i:s) using javascript

09-03-2017 javascript date time

How to remove last / value from url in javascript

27-02-2017 array javascript last value

Get random strings from given string In javascript

21-02-2017 javascript random string