/
mezentsevs
/
examples
Обзор
Документация
Войти
/
mezentsevs
/
examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
js/example_006.js
16 строк
287 B
mezentsevs
feat(js): add example_006.js
24 окт 2025, 16:22
24 окт 2025, 16:22
2767456
Код
Авторство
О чём код?
function User(name) { this.name = name; } User.prototype.sayHello = function () { return 'Hello!'; }; const user = new User('John'); console.log(user.sayHello()); // Hello! User.sayGoodbye = function () { return 'Goodbye!'; }; console.log(User.sayGoodbye()); // Goodbye!