Had a really powerful experience in which I was recursively going through all moments that lead me to where I currently was.<p>This is it written in code.<p>```<p>class Creation {
constructor(createdBy) {
this.createdBy = createdBy;
this.id = createdBy + 1;
}<p><pre><code> create() {
console.log(`${this.id} doing every single thing that you could possibly imagine - creating ${this.id + 1}`)
return new Creation(this.id)
}</code></pre>
}<p>function startExistence(creation) {
if (creation) {
startExistence(creation.create());
}
}<p>startExistence(new Creation(0));
```