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

213
Vistas
Why is my code not doubling every odd index?

I'm trying to write a version of Luhn's algorithm, but why is my code not doubling every odd index here? It seems to be doubling a pattern of index's but i dont understand how it's got that pattern from my code.

    const validateCred = (array) => {
      let removeLast = array.pop();
      let reversed = array.reverse();
      console.log(reversed);
      for (let i = reversed[0]; i < reversed.length; i++)
      if (reversed[i] % 2 !== 0) {
        reversed[i] *= 2;
      }
      console.log(reversed)




[ 0, 8, 6, 1, 0, 8, 0, 9, 7, 7, 6, 9, 3, 5, 4 ]
[ 0, 8, 6, 2, 0, 8, 0, 18, 14, 14, 6, 18, 6, 10, 4 ]

As you can see it's doubling some of the digits, but not the odd ones.

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

0

If you are talking about odd indexes, the problem you use reversed[i] in the "for" loop, and later in the "if" condition. Replaced both instances by just "i". The "i" represents the index in this code.

Fixed function:

const validateCred = (array) => {
          let removeLast = array.pop();
          let reversed = array.reverse();
          console.log(reversed);
          for (let i = 0 ; i < reversed.length; i++)
          if (i % 2 !== 0) {
            reversed[i] *= 2;
          }
     
          console.log(reversed)
     }

If you are about doubling every odd element in the array, this will work - keep "i" at the loop and reversed[i] at the "if":

const validateCred = (array) => {
      let removeLast = array.pop();
      let reversed = array.reverse();
      console.log(reversed);
      for (let i = 0; i < reversed.length; i++)
      if (reversed[i] % 2 !== 0) {
        reversed[i] *= 2;
      }
 
      console.log(reversed)
 }
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