Primárně pro 3.IM WTL - Zde jsou veškerý JavaScript projekty které jsme dělali, nebo budeme dělat. Popis jeste bude upraven postupne
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
763 B

function vynulovat() {
document.getElementById("cislo").innerText = 0;
}
function pridat() {
let x = document.getElementById("cislo").innerText;
x = parseInt(x)+1;
document.getElementById("cislo").innerText = x;
}
function odebrat() {
var x = document.getElementById("cislo").innerText;
x = parseInt(x)-1;
document.getElementById("cislo").innerHTML = x;
}
function createAlert(textAlertu) {
alert(textAlertu)
}
function hodkostkou(stena) {
//alert(stena);
let x = 1 + Math.floor(Math.random() * stena);
console.log(x);
var y = document.getElementById("vysledek");
if (y != null){
document.getElementById("vysledek").innerText = "Při hodu " + stena + " stěnnou kostkou si hodil " + x;
}
}