Skip to content

Instantly share code, notes, and snippets.

@hrajchert
Created April 29, 2017 02:01
Show Gist options
  • Save hrajchert/912a1f4f0ed38820fbcadbc011c57fa2 to your computer and use it in GitHub Desktop.
Save hrajchert/912a1f4f0ed38820fbcadbc011c57fa2 to your computer and use it in GitHub Desktop.
function ordenarPorNombre(a) {
var resultado = a.slice(0);
resultado.sort(function(x, y) {
return x.nombre.localCompare(y.nombre);
});
return resultado;
}
// const resultado = ordenarPorNombre()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment