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

160
Vistas
How to filter few properties of an object which is in Array of objects if one property equals property from another object

I have a object which has some properties for one user, and I have array of objects which is returned from API. My goal is to check which object of Array of objects has the same property as the one single initial object, and then it should return only part of it's properities. I have tried to use .map on Array of objects but it seems not workig.

Below is the code example. I have also prepared codesandbox if You wish.

const user = 
    {
      name: "jan",
      lastName: "kowalski",
      fullName: "jan kowalski",
      car: "audi"
    }
  ;

  const usersAnimal = [
    {
      name: "jan",
      lastName: "kowalski",
      fullName: "jan kowalski",
      animal: "cat",
      animalSize: "small",
      animalName: "Bat"
    },
    {
      name: "john",
      lastName: "smith",
      fullName: "john smith",
      animal: "dog",
      animalSize: "middle",
      animalName: "Jerry"
    },
    {
      name: "Anna",
      lastName: "Nilsson",
      fullName: "Anna Nilsson",
      animal: "cow",
      animalSize: "big",
      animalName: "Dorrie"
    }
  ];

  const filtered = usersAnimal.map((userAnimal)=>userAnimal.fullName === user.fullName && return userAnimal.animalName & userAnimal.animalSize & userAnimal.animal);

thanks

https://codesandbox.io/s/admiring-edison-qxff42?file=/src/App.js

about 4 years ago · Santiago Trujillo
3 Respuestas
Responde la pregunta

0

For case like this, it would be far easier if you filter it out first then proceed using map:

 const filtered = usersAnimal
    .filter((animal) => animal.fullName === user.fullName)
    .map(({ animalName, animalSize, animal }) => {
      return {
        animalName,
        animalSize,
        animal
      };
    });
about 4 years ago · Santiago Trujillo Denunciar

0

If you want to filter, I recommend you to use filter.

The map method will create a new array, the content of which is the set of results returned by each element of the original array after the callback function is operated

const user = {name:"jan",lastName:"kowalski",fullName:"jan kowalski",car:"audi"};

const usersAnimal = [{name:"jan",lastName:"kowalski",fullName:"jan kowalski",animal:"cat",animalSize:"small",animalName:"Bat"},{name:"john",lastName:"smith",fullName:"john smith",animal:"dog",animalSize:"middle",animalName:"Jerry"}];

// Get an array of matching objects
let filtered = 
  usersAnimal.filter(o => o.fullName === user.fullName);
  
// You get the filtered array, then you can get the required properties  
filtered.forEach(o => {
  console.log(
    'animal:%s, animalSize:%s, animalName:%s',
    o?.animal, o?.animalSize, o?.animalName
  );
});

// Then use map to process each element
filtered = filtered.map(o => {
  const {animal, animalSize, animalName} = o;
  return {animal, animalSize, animalName};
});

console.log('filtered', filtered);

about 4 years ago · Santiago Trujillo Denunciar

0

I am providing a for loop solution as I haven't learnt many array methods in javascript.

For me the simplest option is to use a for loop and an if check to loop through the arrays values to check for included values.

for (let v in usersAnimal) {
    if (usersAnimal[v].fullName === user.fullName) {
        console.log(usersAnimal[v])
    }
}

The code above will log the entire usersAnimal object containing the fullname we are looking for.

{
  name: 'jan',
  lastName: 'kowalski',
  fullName: 'jan kowalski',
  animal: 'cat',
  animalSize: 'small',
  animalName: 'Bat'
}

commented for further understanding

for (let v in usersAnimal) {
//loops though the array
    if (usersAnimal[v].fullName === user.fullName) {
    //when the index value 'v' has a fullname that matches the user fullname value
    // it passes the if check and logs that object value
        return console.log(usersAnimal[v])
    //return true...
    }
  //return null
}

//etc
about 4 years ago · Santiago Trujillo 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