Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

148
Vistas
Javascript ordena la matriz por fecha y orden alfabético

Quiero que se ordene por fecha y alfabeto en un orden ¿cómo puedo hacer eso? Creo que el orden alfabético funciona bien, pero la fecha no funciona correctamente. Gracias por las respuestas.

Estructura de datos :

 [{ productId: 21, title: "Huawei P40 Lite ", brand: "Huawei", price: 120, discountPercentage: 10, color: "Black", createdDate: "2021-01-15T01:00:00+03:00", }, { productId: 22, title: "Huawei P40 Lite", brand: "Huawei", price: 1026, discountPercentage: 0, color: "Green", createdDate: "2021-01-16T01:00:00+03:00", }, { productId: 23, title: "Apple iPhone 11", brand: "Apple", price: 1220, discountPercentage: 11, color: "White", createdDate: "2021-01-17T01:00:00+03:00", }, { productId: 24, title: "Apple iPhone 12", brand: "Apple", price: 1420, discountPercentage: 11, color: "White", createdDate: "2021-01-18T01:00:00+03:00", }],

Aquí mi trabajo:

 jsfiddle.net/pazyqb01/

Y probé diferentes soluciones para ordenar la fecha de alguna manera, no pude hacer que funcionara.

La matriz ordenada debe ser como la anterior:

 { productId: 24, title: "Apple iPhone 12", brand: "Apple", price: 1420, discountPercentage: 11, color: "White", createdDate: "2021-01-18T01:00:00+03:00", }, { productId: 23, title: "Apple iPhone 11", brand: "Apple", price: 1220, discountPercentage: 11, color: "White", createdDate: "2021-01-17T01:00:00+03:00", }, { productId: 22, title: "Huawei P40 Lite", brand: "Huawei", price: 1026, discountPercentage: 0, color: "Green", createdDate: "2021-01-16T01:00:00+03:00", }, { productId: 21, title: "Huawei P40 Lite ", brand: "Huawei", price: 120, discountPercentage: 10, color: "Black", createdDate: "2021-01-15T01:00:00+03:00", },
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Por aquí:

simplemente siga la lista de sus criterios de clasificación

 const data = [ { productId: 21, title: 'Huawei P40 Lite ', brand: 'Huawei', price: 120, discountPercentage: 10, color: 'Black', createdDate: '2021-01-15T01:00:00+03:00' } , { productId: 22, title: 'Huawei P40 Lite', brand: 'Huawei', price: 1026, discountPercentage: 0, color: 'Green', createdDate: '2021-01-16T01:00:00+03:00' } , { productId: 23, title: 'Apple iPhone 11', brand: 'Apple', price: 1220, discountPercentage: 11, color: 'White', createdDate: '2021-01-17T01:00:00+03:00' } , { productId: 24, title: 'Apple iPhone 12', brand: 'Apple', price: 1420, discountPercentage: 11, color: 'White', createdDate: '2021-01-18T01:00:00+03:00' } ] const fSort = (a,b) => { let Dx = new Date(b.createdDate) - new Date(a.createdDate) // 1st criteria if (Dx===0) Dx = a.title.trim().localeCompare(b.title.trim()) // 2nd // if (Dx===0) Dx = ... // 3rd // if (Dx===0) Dx = ... // 4th.... return Dx } console.log( data.sort(fSort))

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda