Skip to content

Instantly share code, notes, and snippets.

@farazshuja
Created March 29, 2017 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save farazshuja/d023f5fea2d746d128520dd6c1586d66 to your computer and use it in GitHub Desktop.
Save farazshuja/d023f5fea2d746d128520dd6c1586d66 to your computer and use it in GitHub Desktop.
function sortByAge(obj) {
return obj.sort(function(a,b) {
return a.age - b.age;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment