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

138
Vistas
How to increment a key in the dictionary?

I'm new to javascript and I'm trying to increment a key in the dictionary

var dic = {}
for (let i = 0; i < 100; i++) {
    dic['key']++        
}
console.log(dic)

I don't get the incremented number, where am I going wrong?

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

0

You are trying to increment undefined since there is no key property in dic, thus you get NaN.

Instead, give the key property a default value:

var dic = {key: 0}
for (let i = 0; i < 100; i++) {
    dic['key']++        
}
console.log(dic)

about 4 years ago · Juan Pablo Isaza Denunciar

0

var dic = { count1: 0, count2: 10 }

for (var i in dic) {
    if (i === 'count1') {
        dic[i]++;
    }
}
console.log(dic);

Are you trying to do anything like this? here you are iterating through the object, if i equals the key you are looking for, it will increment it.

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