1234567891011121314151617 |
- <head>create person</head>
- <body>
- <script>
- function getFullName(/*this*/) { //никаких this тут объявлять не надо, они подразумеваются
- return `${this.name} ${this.surname}`
- }
- const a = createPerson("Вася", "Пупкин")
- const b = createPerson("Анна", "Иванова")
- const c = createPerson("Елизавета", "Петрова")
- console.log(a.getFullName()) //Вася Пупкин
- a.fatherName = 'Иванович' //Вася Иванович Пупкин
- console.log(b.getFullName()) //Анна Иванова
- </script>
- </body>
|