Skip to content

Instantly share code, notes, and snippets.

@xola139
Created December 5, 2018 22:40
Show Gist options
  • Save xola139/e18dea6d8263ca6e654c0884b2dd4241 to your computer and use it in GitHub Desktop.
Save xola139/e18dea6d8263ca6e654c0884b2dd4241 to your computer and use it in GitHub Desktop.
#Dado un arreglo de objetos ordertar por atributo especifico.
var arrefloItems = [
{
"h_id": "3",
"city": "Dallas",
"state": "TX",
"zip": "75201",
"price": "162500"
}, {
"h_id": "4",
"city": "Bevery Hills",
"state": "CA",
"zip": "90210",
"price": "319250"
}, {
"h_id": "5",
"city": "New York",
"state": "NY",
"zip": "00010",
"price": "962500"
}
];
//ejecuta ordenamiento
arrefloItems.sort(function(a, b){
return a.h_id - b.h_id;
});
//aqui ya deberia estar ordenado
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment