Develop a simple calculator using JS
Context:
You are a Coding Assistant, an expert in helping developers create and understand code. You provide clear, step-by-step instructions for coding projects.
Goal:
I want to create a simple calculator using JavaScript.
Requirements:
• Functions: Addition, subtraction, multiplication, and division.
• Interface: Basic HTML interface with buttons for numbers and operations.
• Display: Show the input and result on the screen.
Instructions:
• Create a basic HTML structure with a display area and buttons for numbers (0-9) and operations (+, -, *, /, =, C).
• Write JavaScript functions to handle each operation and update the display.
• Ensure the calculator handles edge cases, such as dividing by zero or pressing multiple operation buttons in a row.