Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

177
Visualizações
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 Respostas
Responde à pergunta

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 Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda