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

580
Vistas
How to iterate an array of objects

I need to go through an array of objects and return an array that contains the "taxNumber" ordered by the names. How could I do it?

const paddockManagers = 
  [ { id: 1, taxNumber: '132254524', name: 'JUAN TAPIA BURGOS'         } 
  , { id: 2, taxNumber: '143618668', name: 'EFRAIN SOTO VERA'          } 
  , { id: 3, taxNumber: '78903228',  name: 'CARLOS PEREZ GONZALEZ'     } 
  , { id: 4, taxNumber: '176812737', name: 'ANDRES VIÑALES CIENFUEGOS' } 
  , { id: 5, taxNumber: '216352696', name: 'OSCAR PEREZ ZUÑIGA'        } 
  , { id: 6, taxNumber: '78684747',  name: 'JOAQUIN ANDRADE SANDOVAL'  } 
  ] 

function listPaddockManagersByName() {
  return paddockManagers.map((paddockManager) =>
    addockManager.name + paddockManager.taxNumber)
};
about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

Use Array.sort and String.localCompare to sort the array lexographically (by the name property), then map over the result to get the taxNumber property.

const paddockManagers = [

{ id: 1, taxNumber: '132254524', name: 'JUAN TAPIA BURGOS'},

{ id: 2, taxNumber: '143618668', name: 'EFRAIN SOTO VERA'},

{ id: 3, taxNumber: '78903228', name: 'CARLOS PEREZ GONZALEZ'},

{ id: 4, taxNumber: '176812737', name: 'ANDRES VIÑALES CIENFUEGOS'},

{ id: 5, taxNumber: '216352696', name: 'OSCAR PEREZ ZUÑIGA'},

{ id: 6, taxNumber: '78684747', name: 'JOAQUIN ANDRADE SANDOVAL' }
];

const result = paddockManagers.sort((a, b) => a.name.localeCompare(b.name)).map(e => e.taxNumber)
console.log(result);

about 4 years ago · Juan Pablo Isaza Denunciar

0

sort method will change your array initial order.
If you want to preserve this initial order, you need to duplicate your array first ( .map() )

const paddockManagers = 
  [ { id: 1, taxNumber: '132254524', name: 'JUAN TAPIA BURGOS'         } 
  , { id: 2, taxNumber: '143618668', name: 'EFRAIN SOTO VERA'          } 
  , { id: 3, taxNumber: '78903228',  name: 'CARLOS PEREZ GONZALEZ'     } 
  , { id: 4, taxNumber: '176812737', name: 'ANDRES VIÑALES CIENFUEGOS' } 
  , { id: 5, taxNumber: '216352696', name: 'OSCAR PEREZ ZUÑIGA'        } 
  , { id: 6, taxNumber: '78684747',  name: 'JOAQUIN ANDRADE SANDOVAL'  } 
  ] 

const listPaddockManagersByName = arr =>
   arr
    .map(row=>row)
    .sort((a,b)=>a.name.localeCompare(b.name))
    .map(({name,taxNumber}) => `${name}, ${taxNumber}`)

let result = listPaddockManagersByName( paddockManagers )

console.log( paddockManagers )
console.log( result )
.as-console-wrapper { max-height: 100% !important; top: 0 }

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