Untitled
Guest 23 2nd Jan, 2025
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<script>
function pojazd(marka, model, rokProdukcji, przebieg) {
this.marka = marka;
this.model = model;
this.rokProdukcji = rokProdukcji;
this.przebieg = przebieg;
this.wyswietlDane = function() {
document.write("<b>Marka: </b>" + this.marka + "<br>");
document.write("<b>Model: </b>" + this.model + "<br>");
document.write("<b>Rok produkcji: </b>" + this.rokProdukcji + "<br>");
document.write("<b>Przebieg: </b>" + this.przebieg + " km<br>");
}
this.wyswietlDetal = function() {
document.write("<b>Marka pojazdu: </b>" + this.marka + "<br>");
document.write("<b>Numer rejestracyjny: </b>" + this.numerRejestracyjny + "<br>");
}
}
var pojazd1 = new pojazd("Toyota", "Corolla Verso", 2015, 120000);
pojazd1.wyswietlDane();
pojazd1.numerRejestracyjny = "WPY1051";
pojazd1.wyswietlDetal();
</script>
</body>
</html>
To share this paste please copy this url and send to your friends
RAW Paste Data