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

269
Vistas
How to sum an array of objects with a condition in typescript

Hi I am doing addition of key value from objects of an array. I want to exclude the object from the addition if it has some conditions. Example:

var arrItem = [{"id": 1, "value":100},{"id": 2, "value":300},{"id": 3, "value":400}];

//addition
this.sum = arrItem.map((a:any) => a.value).reduce(function (a:any, b:any) {
          return a + b;
        });

console.log(this.sum) // ====>>> getting 800

I want to exclude object with id==2 from summation. How I can filter this out so that I will get result as ==> 500

about 4 years ago · Santiago Gelvez
1 Respuestas
Responde la pregunta

0

You can do it with reduce:

this.sum = arrItem.reduce((acc, val) => {
  if (val.id !== 2) return acc + val.value;
  return acc;
}, 0);
about 4 years ago · Santiago Gelvez 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