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

167
Vistas
buttons work the opposite after first click

I'm trying to build a beginner app that will increment and decrement a given number on a mouse event. However, the buttons act weird. Each button increments and decrement but only after the second click. After the first they do the opposite, ie. the increment button = decrements and vice versa. Can anyone tell why it happening? (The buttons work weird after the first click then work just fine)

let batch = document.getElementById("count-el");
let batchConverted = Number(batch.innerText);
const incrementBtn = document.getElementById("increment-btn");
const decrementBtn = document.getElementById("decrement-btn");

incrementBtn.addEventListener("click", increment);
decrementBtn.addEventListener("click", decrement);

function increment() {
  let batchIncrement = batchConverted++;
  batch.innerText = batchIncrement;
}

function decrement() {
  let batchDecrement = batchConverted--;
  batch.innerText = batchDecrement;
}
<h1>People entered:</h1>
<h2 id="count-el">0</h2>
<button id="increment-btn">Increment</button>
<button id="decrement-btn">Decrement</button>

about 4 years ago · Juan Pablo Isaza
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