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

178
Vistas
Better way to validate an array

I have a function that removes tags inside a collection, sometimes the parameter can be an Array others times just a variable.

I'm doing the parsing like so, just wondering if there is a cleaner way to do it?

I already tried [...tag] but that just split the string

this.removeNotificationTag = async (userId, tag) => {
    const tagsToRemove = Array.isArray(tag) ? tag : [tag];
     
     // if tag is a variable make it an array.
  };

Tried the spread operator, but that just splitted the string.

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

0

Your code is fine, that's the generic way to do it.

If your input is either string or string[], you could also use typeof:

this.removeNotificationTag = async (userId, tag) => {
    const tagsToRemove = typeof tag === 'string' ? [tag] : tag;
    // the rest of the code...
  };

But this is less generic and the code is the same length, so I would stick with what you wrote in the first place.

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