15 lines
		
	
	
		
			342 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			342 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| function User(name, age) {
 | |
|     this.name = name;
 | |
|     this.age = age;
 | |
|     this.displayInfo = function () {
 | |
|         console.log(
 | |
|             `Имя: ${this.name}  Возраст: ${this.age}`
 | |
|         );
 | |
|     };
 | |
| }
 | |
| User.prototype.sayHi = function () {
 | |
|     console.log(`Привет, меня зовут ${this.name}`);
 | |
| };
 | |
| 
 | |
| module.exports = User;
 | 
