Skip to content

Laurencejs/laurencejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 

Repository files navigation

class Laurence {
  constructor(...options) {
    this.height = "1.80"
    this.weight = "65"
    this.type = "human"
    this.job = "student"
    this.sex = "male"
  }
}

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

Laurencejs

Discord Presence

🔧 Languages

🧮 Stats

Laurence GitHub Stats

🏆 Trophies

trophy

🌟 Contacts!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published