by mikodin on 9/21/20, 3:18 PM with 2 comments
This is it written in code.
```
class Creation { constructor(createdBy) { this.createdBy = createdBy; this.id = createdBy + 1; }
create() {
console.log(`${this.id} doing every single thing that you could possibly imagine - creating ${this.id + 1}`)
return new Creation(this.id)
}
}function startExistence(creation) { if (creation) { startExistence(creation.create()); } }
startExistence(new Creation(0)); ```
by PoissonVache on 9/21/20, 3:27 PM