/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/javascript/js-501-22-005/main.js
14 строк
340 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
function Person(name) { this.name = name; // this = новый объект console.log(this); } const alice = new Person("Alice"); // Person { name: "Alice" } class Car { constructor(model) { this.model = model; // this = новый объект Car } } const tesla = new Car("Tesla"); // Car { model: "Tesla" }