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

80
Vistas
IF Statment Logic Meaning

I am working on a project but I was stumped to see this piece of code if ((array.length - 1 - i) % 2 === 1) I am just curious as to how it works?

const valid1 = [4, 5, 3, 9, 6, 7, 7, 9, 0, 8, 0, 1, 6, 8, 0, 8];

const validateCred = (array) => {
  let total = 0;
  for (var i = array.length - 1; i >= 0; i--) {
    // console.log(array[i]) 
    if ((array.length - 1 - i) % 2 === 1) { /*I would like to know what does this do when put in a if statment array.length - 1 - i  */
      array[i] *= 2;
      // console.log(array[i]) 
      if (array[i] > 9) {
        array[i] -= 9;
      }
    }
    total += array[i]
    console.log(total)
  }
  return total % 10 === 0;

};
console.log(validateCred(valid1))

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

0

  • array.length - 1: the last index of the array
  • lastIndex - i: work through the array from back to front (typically)
  • someIndex % 2 === 1: is the index modulus 2 equal to 1 (meaning, is it odd?)

But then the loop iterates from the last index to the first index, so the - i just makes it iterate from front to back again. Which seems needlessly complex.

This code is pretty funky...

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