Untitled
Guest 15 2nd Jan, 2025
function osoba(imie, nazwisko, zawod) {
this.imie = imie;
this.nazwisko = nazwisko;
this.zawod = zawod; // Zawód jest przechowywany, ale nie wyświetlany
this.okaz = function() {
document.write("<b>Imię i nazwisko: </b>" + this.imie + " " + this.nazwisko + "<br>");
}
}
var osoba1 = new osoba("Piotr", "Siewniak", "Inżynier");
osoba1.okaz();
To share this paste please copy this url and send to your friends
RAW Paste Data