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

99
Vistas
keep objects in an array

How can I store objects in an array so that I can call a method for each object in a loop.

How I would like the result to be:

[[obj1, obj2],[obj3, obj4]].foreach((firstObj, secondObj) => {
   firstobj.search();
   secondObj.search()
})

And the result will be as follows:

Iteration 1: obj1.search(); obj2.search();

iteration 2: obj3.search(); obj4.search();

Any advice is welcome

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

Use array destructuring in the argument list to "unpack" the pairs to 2 free variables:

[[obj1, obj2], [obj3, obj4]].forEach(([o1, o2]) => {
   o1.search();
   o2.search();
});

This is equivalent to doing (and indeed, this is what Babel compiles the above to)

[
  [obj1, obj2],
  [obj3, obj4]
].forEach((_ref) => {
  let [o1, o2] = _ref;
  o1.search();
  o2.search();
});
about 4 years ago · Juan Pablo Isaza Denunciar

0

You can unpack your array into two separate variables in the callback arguments like this.

[[obj1, obj2],[obj3, obj4]].forEach([firstObj, secondOb] => {
    firstobj.search();
    secondObj.search()
})

Or if you don't know the size of each nested array you can use flat to flatten your array into one then execute your function in a forEach.

[[obj1, obj2],[obj3, obj4]].flat().forEach(obj => {
    obj.search();
})
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