Skip to content

Instantly share code, notes, and snippets.

@qwersk
Created September 25, 2019 13:55
Show Gist options
  • Save qwersk/f7f659ad94c0cb61d8c9c2614ec7350f to your computer and use it in GitHub Desktop.
Save qwersk/f7f659ad94c0cb61d8c9c2614ec7350f to your computer and use it in GitHub Desktop.
Sort object array #js
function myFunction(arr) {
arr.sort(function(a, b){
var x = a.type.toLowerCase();
var y = b.type.toLowerCase();
if (x < y) {return -1;}
if (x > y) {return 1;}
return 0;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment