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:
File Upload Using Angular Js and Node Js28-05-2018 AngularJs Node js file upload multer module |
How to use http-post request in node js14-03-2017 http-post module node js |
Filter for replace text in Angular Js05-03-2017 filter replace angular js |
Filters for convert text to camel case in Angular Js05-03-2017 angularjs camelcase filters |
How to change background color and color to the text using javascript27-02-2017 css javascript colors |