lyspære conditionals

This commit is contained in:
Geir Okkenhaug Jerstad 2024-08-22 14:28:11 +02:00
parent 49cf225a2e
commit 9929d0349f
2 changed files with 74 additions and 0 deletions

31
intro_js/clicker.html Normal file
View file

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=<device-width>, initial-scale=1.0">
<title>Document</title>
</head>
<body>
Poeng <span id="points"></span><br>
<button onclick="addPoints()">Klikk her</button>
<button onclick="upgrade()">Oppgrader</button>
<button onclick="reset()">Reset</button>
<script>
let points = 0;
let upgrades = 1;
function addPoints(){
points += upgrades;
document.getElementById('points').innerHTML = points;
};
function upgrade(){
upgrades++;
points -= 10;
document.getElementById('points').innerHTML = points;
}
function reset(){
points = 0;
upgrades = 1;
}
</script>
</body>
</html>