multiplication added to calc app

This commit is contained in:
sweatshirt0 2023-01-23 15:50:31 -05:00
parent 48f2947880
commit 330b778ba8

View File

@ -16,3 +16,7 @@ if (op == "+") {
if (op == "-") { if (op == "-") {
console.log(Number(c) - Number(d)); console.log(Number(c) - Number(d));
} }
if (op == "*") {
console.log(Number(c) * Number(d));
}