diff --git a/index.html b/index.html
index 8bfd362..cf40e23 100644
--- a/index.html
+++ b/index.html
@@ -22,7 +22,7 @@
0
-
+
@@ -74,6 +74,7 @@
switch (operator) {
case '+': result = firstOperand + secondOperand; break;
case '-': result = firstOperand - secondOperand; break;
+ case '*': result = firstOperand * secondOperand; break;
}
currentInput = result.toString();
operator = null;