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

174
Vistas
How to convert an array to an object with a corresponding sub-sequent value?

I am trying convert an array: filterArrays([1, 2, true, true, false, '1', 'a', 3, {}, null, undefined]) following pattern

{
    "number": [
        1,
        2,
        3
    ],
    "boolean": [
        true,
        true,
        false
    ],
    "string": [
        "1",
        "a"
    ],
    "object": [
        {},
        null
    ],
    "undefined": [
        null
    ]
}

Here is my try: which is working as expected value, Is there a better way to solve this problem? Thanks;

const filterArrays = (values) => {
  return values.reduce((acc, obj) => {
        const key = typeof obj;
        if(acc[key]) {
            acc[key].push(obj)
        }
        else {
            acc[key] = [obj]
        }
        return acc;
  }, {});
}
about 4 years ago · Juan Pablo Isaza
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