<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Obiekt Student</title>
<script>
function Student(imie, nazwisko, wiek, stypendium, rok_studiow) {
this.imie = imie;
this.nazwisko = nazwisko;
this.wiek = wiek;
this.stypendium = stypendium;
this.rok_studiow = rok_studiow;
}
var student1 = new Student("Jan", "Kowalski", 22, true, 3);
document.write("Imię: " + student1.imie + "<br>");
document.write("Nazwisko: " + student1.nazwisko + "<br>");
document.write("Wiek: " + student1.wiek + "<br>");
document.write("Stypendium: " + (student1.stypendium ? "Tak" : "Nie") + "<br>");
document.write("Rok studiów: " + student1.rok_studiow + "<br>");
</script>
</head>
<body>
<h1>Informacje o studencie</h1>
</body>
</html>
Paste Hosted With By Wklejamy.pl