This commit is contained in:
Boof 2023-02-01 10:31:08 +01:00 committed by GitHub
parent 55a182d9e2
commit 23da5f4c94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,8 +7,8 @@
const num2 = document.getElementById("input2"); const num2 = document.getElementById("input2");
const num1 = document.getElementById("input1"); const num1 = document.getElementById("input1");
percentage(num1, num2) //percentage(num1, num2)
document.getElementById("output").value = percentage(num1, num2) document.getElementById("output").value = percentage(num1, num2);
} }
</script> </script>
<body> <body>