mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
dont say that that was the fucking problem
This commit is contained in:
parent
82fb0c2b45
commit
50fde675e9
@ -13,7 +13,10 @@
|
||||
fetch(url, { method: 'DELETE' })
|
||||
.then((response) => {
|
||||
if(response.ok) {
|
||||
output.innerHTML = 'Delete successful';
|
||||
output.innerHTML = 'Succesfully yeeted';
|
||||
}
|
||||
else {
|
||||
output.innerHTML = 'Failed to yeet';
|
||||
}
|
||||
|
||||
})
|
||||
|
||||
@ -4,8 +4,8 @@
|
||||
}
|
||||
|
||||
function docalc(){
|
||||
const num2 = document.getElementById("input2");
|
||||
const num1 = document.getElementById("input1");
|
||||
const num2 = document.getElementById("input2").value;
|
||||
const num1 = document.getElementById("input1").value;
|
||||
var calcu = percentage(num1, num2);
|
||||
|
||||
//percentage(num1, num2)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user