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

116
Vistas
Filtering a nested array and return the array which matches the value for the key

I'm trying to filter an array which contains arrays of object, based on the id. I'm able to filter them, but need to clean up the output a bit as it also returns an empty array, since the condition doesn't match for that array.

How do I fix it?

const resKey = 'ABC';
const data = [
  [{
    "user": {
      "firstName": "John",
      "lastName": "Smith",
    },
    "id": "ABC"
  }],
  [{
    "user": {
      "firstName": "John",
      "lastName": "Smith",
    },
    "id": "DEF"
  }]
];

const result = data.map(eachArr => eachArr.filter(eachObj => eachObj.id === resKey));
console.log(result);

Expected Output:

[
  [
    {
      user: {
        firstName: "John",
        lastName: "Smith",
      },
      id: "ABC",
    },
  ],
]

Actual Output:

[
  [
    {
      user: {
        firstName: "John",
        lastName: "Smith",
      },
      id: "ABC",
    },
  ],
  [],
]
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You can again filter out the empty array which doesn't contain an elements (length is 0) using filter.

.filter((arr) => arr.length);

const resKey = "ABC";
const data = [
  [
    {
      user: {
        firstName: "John",
        lastName: "Smith",
      },
      id: "ABC",
    },
  ],
  [
    {
      user: {
        firstName: "John",
        lastName: "Smith",
      },
      id: "DEF",
    },
  ],
];

const result = data
  .map((eachArr) => eachArr.filter((eachObj) => eachObj.id === resKey))
  .filter((arr) => arr.length);
  
console.log(result);

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