JS calculator project feedback

I would like to know what ya’ll think of my calculator

src: https://github.com/saidg23/calculator

live demo: https://saidgarcia.com/calculator/

Problem:
I enter a number multiplied by another and then press the equals button. I press another number and it gets concatenated with the result.

  1. press 8
  2. press X
  3. press 4
  4. press =

8 X 4 = 32

  1. press 4

8 X 4 = 324

1 Like

Hey, it looks nice but it is completely keyboard inaccessible. You should use actual <button>s instead of <div>s with a button class.

1 Like

Thanks for the feedback ya’ll I think the issues are fixed now