function wypisz(){ let p1 = document.getElementById("p1"); let napis = ""; for(i = 0; i< 10; i++){ napis += i + "
"; } p1.innerHTML = napis; }