Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/03/2015, 04:41
Gothgauss
 
Fecha de Ingreso: marzo-2009
Mensajes: 395
Antigüedad: 15 años, 1 mes
Puntos: 11
Respuesta: Ordenar array multidimensional

Lo he resuelto con el siguientecodigo:
Código:
datos.sort(function(a, b) { 
if (a[28] == b[28]) { return 0; }
if (a[28] < b[28]) { 
return 1; } else {
return -1; } });