function User(name, id) { this.name = name; this.id = id; this.human = true; } let ivan = new User('Ivan', 25); let alex = new User('Alex', 20);