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

221
Vistas
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 Respuestas
Responde la pregunta

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 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