hw11_01_create_person.html 675 B

1234567891011121314151617
  1. <head>create person</head>
  2. <body>
  3. <script>
  4. function getFullName(/*this*/) { //никаких this тут объявлять не надо, они подразумеваются
  5. return `${this.name} ${this.surname}`
  6. }
  7. const a = createPerson("Вася", "Пупкин")
  8. const b = createPerson("Анна", "Иванова")
  9. const c = createPerson("Елизавета", "Петрова")
  10. console.log(a.getFullName()) //Вася Пупкин
  11. a.fatherName = 'Иванович' //Вася Иванович Пупкин
  12. console.log(b.getFullName()) //Анна Иванова
  13. </script>
  14. </body>