function pokaz(){ let obrazek = document.getElementById("obrazek") let h = document.getElementById("wysokosc").value; h = parseInt(h); console.log(h); // 0 - 255 let choinka = ""; for(let i = 0; i < h + 1 ; i++){ for(let k = i ; k < h ; k++){ choinka += " "; } for(let j = 0; j < i ; j++){ let number = Math.floor(Math.random() * (255 - 33) ) + 33; let znak = String.fromCharCode(number) choinka += znak; } choinka += "
" } obrazek.innerHTML = choinka; }