A click counter is one of the simplest interactive components — perfect for learning how events and state work. You press a button and the number on screen changes instantly.
In this challenge, you will build a Simple Click Counter with three buttons: increment (+), decrement (−), and reset. The counter display shows the current number. Clicking increment adds 1, decrement subtracts 1, and reset sets it back to 0.
Make sure the counter never goes below 0, and each button click updates the display immediately without refreshing the page.