This commit is contained in:
Florian Schmid 2023-04-12 13:03:27 +02:00
parent 78fb7fafb8
commit 3171175dde

View File

@ -21,11 +21,11 @@ function getRandomCpu() {
} }
export function btnLowerClick() { export function btnLowerClick() {
currentCpu.score < nextCpu.score ? showResult(true) : showResult(false); nextCpu.score < currentCpu.score ? showResult(true) : showResult(false);
} }
export function btnHigherClick() { export function btnHigherClick() {
currentCpu.score > nextCpu.score ? showResult(true) : showResult(false); nextCpu.score > currentCpu.score ? showResult(true) : showResult(false);
} }
function showResult(isCorrect) { function showResult(isCorrect) {
@ -49,7 +49,7 @@ async function countUp() {
document.getElementById("btnLower").setAttribute("disabled", ""); document.getElementById("btnLower").setAttribute("disabled", "");
const options = { const options = {
startVal: 7000, startVal: 0,
separator: '.', separator: '.',
decimal: ',', decimal: ',',
}; };