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

210
Vistas
Why do "for of" loop behave very strangely?

This behaviour is very strangely. I tested this code without "For of" loop and that was good. What problem does it have?

It’s supposed to count unique elements.

function countIdentic(arr) {
  let sum = 0
  let counter = 1
  for (let a of arr) {
    if (arr.includes(a, counter)) {
      sum++
      counter++
    }
  }
  return sum
}
let mf = [9, 8, 7, 6, 5, 4, 3, 2, 1, 10]

console.log(countIdentic(mf))

Displays wrong value

What the thing?

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

0

It turns out that your counter needs to be incremented in every iteration, not only when the if statement is true. So pass it to the line below.

function countIdentic(arr) {
let sum = 0
let counter=1
for(let a of arr){
  
  if(arr.includes(a,counter)){
    sum++;
  }
  counter++;
}
  return sum
}
let mf=[9,8,7,6,5,6,5,4,3,2,1,10]

console.log(countIdentic(mf))

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