Skip to content

Instantly share code, notes, and snippets.

@luislobo14rap
Last active June 19, 2024 08:29
Show Gist options
  • Save luislobo14rap/fd4bb19efe489d856065ad412e128fef to your computer and use it in GitHub Desktop.
Save luislobo14rap/fd4bb19efe489d856065ad412e128fef to your computer and use it in GitHub Desktop.
sort-obj-by.js
// sort-obj-by.js v1
function sortObjBy(array, property) {
return array.sort(function(a, b) {
return a[property] > b[property] ? 1 : -1
});
};
Object.prototype.sortObjBy = function(property) {
return sortObjBy(this, property);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment