Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<body>
<h2>JavaScript Конструктори об’єкта</h2>
<p id="demo"></p>
<script>
// Функція-конструктор для об’єктів Person
function Person(first, last, age, eye) {
  this.firstName = first;
  this.lastName = last;
  this.age = age;
  this.eyeColor = eye;
}
// Створіть об’єкт Person
const myFather = new Person("John", "Doe", 50, "blue");
// Показати вік
document.getElementById("demo").innerHTML =
"Моєму батькові " + myFather.age + ".";
</script>
</body>
</html>