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.
18 lines
521 B
18 lines
521 B
function zobrazit() {
|
|
let text = document.getElementById("gettext").value;
|
|
|
|
document.getElementById("logsystem").innerHTML += "<li>"+text+"</li>";
|
|
}
|
|
|
|
function updatename() {
|
|
let fn = document.getElementById("firstname").value;
|
|
let ln = document.getElementById("lastname").value;
|
|
|
|
document.getElementById("getfn").innerHTML = fn;
|
|
document.getElementById("getln").innerHTML = ln;
|
|
}
|
|
|
|
function sectihodnoty(x,y) {
|
|
var z = x.toString()+y.toString();
|
|
console.log("x+y=z --> "+x+"+"+y+"="+z);
|
|
}
|
|
|