Project Feedback for my JavaScript Calculator Project

Hi :slight_smile:
am I missing anything?
http://s.codepen.io/Mustafa-Ispahani25/debug/OWzxKa/NQkzYvVgJEjA

1 Like

The link you provided is dead. Please check it.

1 Like

Congrats of getting this far on the calculator project.

Here are some things that I noticed:

  1. if I calculate 1+1, I get two. If I then start a new calculation and type 52, I get 50. This happens because the answer from 1+1 didn’t clear, so the new calculation was done on 252 not 5*2.

  2. if you type too many letters, the size of the calculator starts to grow

  3. The parentheses cause an error.

  4. You are able to create numbers with leading 0’s (e.g. 000000001).

Other than these small things, the calculator seems to work fine.

Happy coding!