Feature Request
Implement a basic calculator with the following requirements:
- User interface with buttons for digits (0-9) and basic operators (+, −, ×, ÷, =)
- Input and display area for calculations
- Responsive design using CSS
- Functionality powered by JavaScript (addition, subtraction, multiplication, division, clear/reset)
- No external frameworks; use plain HTML, CSS, and vanilla JavaScript
Acceptance Criteria
- Users can enter numbers and basic operators via the interface
- Results are calculated and displayed correctly
- All input is handled through button clicks only
Please include code organization and a basic structure for ease of maintenance.