Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

176
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!