Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.04 KB

README.md

File metadata and controls

29 lines (22 loc) · 1.04 KB

JavaScript Calculator

This is one of my class project using HTML CSS & Javascript Completed On: 26th July
https://javascriptcal.web.app/

User Stories

  • I can add, subtract, multiply and divide two numbers.
  • I can clear the input field with a clear button.
  • I can keep chaining mathematical operations together until I hit the equal button, and the calculator will tell me the correct output.
  • I can performs almost all type of basic calculations.

My Work

JavaScript calculator

The prerequisites

Before you start building this project please make sure you have a decent command of JavaScript. Minimally, you need to know these things:

  1. If/else statements
  2. For loops
  3. JavaScript functions
  4. Arrow functions && and || operators
  5. How to change the text with the textContent property
  6. How to add event listeners with the event delegation pattern
  7. How to use query selector to target HTML elements.
  8. Basic knowledge of CSS and HTML and designing.