class Baranabey {
  constructor(...options) {
    this.height = "1.82"
    this.weight = "72"
    this.type = "human"
    this.job = "student"
    this.sex = "male"
  }
}

class CreateMan extends Baranabey {
  constructor(...options) {
    super(options);
  }
  
  private _eating() {
    void "eating 🍔 🍟 🍗 🥤"
  }
  
  private _coding() {
    void "coding... ❤️"
  }
  
  private _sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)) }
  
  async createDay() {
    this._eating()
    this._coding()
    await this._sleep(18000000)
    
    this.createDay()
  }
  
}

let baranabey = new CreateMan()
baranabey.createDay();

Me :)

[Discord Presence

🔧 Languages

🧮 Stats


🏆 Trophies

trophy

🌟 Contacts!