Skip to content

Instantly share code, notes, and snippets.

@ojengwa
Last active December 6, 2016 15:08
Show Gist options
  • Save ojengwa/ddcad09526b1dc1180d44e5ab6221b4c to your computer and use it in GitHub Desktop.
Save ojengwa/ddcad09526b1dc1180d44e5ab6221b4c to your computer and use it in GitHub Desktop.
function sortList(listOfObj) {
function compareFunc(objA, objB) {
return (objA.age - objB.age);
};
return listOfObj.sort(compareFunc);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment