const LOOSE_MESSAGE = "im sorry, but you lost" const WIN_MESSAGE = "congrats, you win" async function calcChanche() { const name = document.getElementById("name").value const chance = document.getElementById("Chance").value const mult = document.getElementById("Multiplicator").value const url = "/random?chance=" + chance + "&multiplicator=" + mult + "&name=" + name; try { const response = await fetch(url); const content = await response.text() console.log(content); if (content == "true") { document.getElementById("won").innerText = WIN_MESSAGE } else { document.getElementById("won").innerText = LOOSE_MESSAGE } getWinners() } catch (error) { console.error(error.message); } } async function getWinners() { const url = "/winners" try { const response = await fetch(url); const content = await response.text() document.getElementById("winners").innerText = content } catch (error) { console.error(error.message); } }