Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

More generic sort on each condition js

array.sort(function(o1,o2){
  if (sort_o1_before_o2)    return -1;
  else if(sort_o1_after_o2) return  1;
  else                      return  0;
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #More #generic #sort #condition #js
ADD COMMENT
Topic
Name
4+9 =