Skip to content

Instantly share code, notes, and snippets.

@neilmaledev
Created September 14, 2017 05:10
Show Gist options
  • Save neilmaledev/5450e3e6e756b99d9c837e94a2dd9df2 to your computer and use it in GitHub Desktop.
Save neilmaledev/5450e3e6e756b99d9c837e94a2dd9df2 to your computer and use it in GitHub Desktop.
angular sorting function
alarms.sort(function(a, b) {
a = a.val;
b = b.val;
return a - b;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment