Calculator
Build a calculator with the same functionality as the real world object. This calculator uses immediate execution logic and doesn’t observe the order of operation precedence.
EXAMPLE: 3 + 5 x 6 - 2 / 4 =
Immediate Execution Logic: 11.5
Formula/Expression Logic: 32.5
The calculator can add, subtract, multiply and divide two numbers and keep chaining mathematical operations together until the equal button is pressed. When pressed, equal will show the correct total, which can be cleared via a button.
Create an app functionally similar to this: https://codepen.io/FreeCodeCamp/full/rLJZrA/