Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
function User(name) { this.name = name; this.hello = function () { //метод hello console.log ("Мене зовут" + this.name); }; } let userOne = new User("Вася"); let userSecond = new User("Саша"); userOne.hello();
class User { constructor(name) { this.name = name; } hello() { //метод hello console.log ("Мене зовут" + this.name); }; } let userOne = new User("Вася"); let userSecond = new User("Саша"); userOne.hello();
this.hello = () => { //метод hello console.log ("Мене зовут" + this.name); };