Skip to content

Astpod/astpod

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 

Repository files navigation

class Astpod {
  constructor(...options) {
    this.height = "1.87"
    this.weight = "76"
    this.type = "human"
    this.job = "Civil Engineer"
    this.gender = "male"
  }
}

class CreateMan extends Astpod {
  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 Astpod = new CreateMan()
Astpod.createDay();

Astpod

Discord Profile

🔧 Languages

🧮 Stats

Astpod GitHub Stats

🏆 Trophies

trophy

🌟 Contacts!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published