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

216
Views
Decipher a couple of things in expand ranges function

Trying to get some zip code expansion js code, I got the following:

function parse(string) {
    const numbers = [];
    for (const [, beginStr, endStr] of string.matchAll(/(\d+)(?:-(\d+))?/g)) {
        const [begin, end] = [beginStr, endStr].map(Number);
        numbers.push(begin.toString().padStart(5, "0"));
        if (endStr !== undefined) {
            for (let num = begin + 1; num <= end; num++) {
              
              numbers.push(num.toString().padStart(5, "0"));
          }
        }
    }
    return numbers;
}

There are a couple of things I don't understand. First off, why is there a comma when declaring beginStr and endStr in the for .. of loop? Two, the regex has a ?: that is explained like "? matches the previous token between zero and one times, as many times as possible, giving back as needed", but there is no previous token and the colon is not explained. Does anybody know how this works?

Thanks, Raf

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

The matchAll returns an Iterator with a value of [ZIP range, ZIP start, ZIP end]. Since the code does not need the ZIP range, you can skip that value when destructuring the array. So it's basically

const [
  , // ZIP range
  beginStr, // ZIP start
  endStr, // ZIP end
]

As for the ?: What is a non-capturing group in regular expressions?

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!