division added to calc app; basic logic complete.

This commit is contained in:
sweatshirt0 2023-01-23 15:53:31 -05:00
parent 330b778ba8
commit c757986d08
1 changed files with 4 additions and 0 deletions

View File

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