A basic calculator built with plain JavaScript and DOM manipulation. Supports fundamental arithmetic operations: ➕ addition, ➖ subtraction, ✖️ multiplication, ➗ division, and 💯 percentage calculation.
👉 https://r1derpush.github.io/calculator/
🔢 Input digits (0–9) and decimal point .
➕ ➖ ✖️ ➗ % — Arithmetic operations
🧼 Clear — Resets the display and all internal values
❌ Delete — Intended to remove the last character (currently not fully implemented)
✅ Equals (=) — Computes the result
🔁 Supports sequential input of numbers and operations
Pressing a number button ➡️ appends the digit to the display.
Pressing an operation button ➕➖✖️➗📉 saves the current number into a variable and clears the display for the next input.
Pressing = ➡️ calculates the result based on the selected operation.
Clear button 🧼 resets all internal states and display.