Who Executed Existence.js?

1 points by mikodin ↗ HN
Had a really powerful experience in which I was recursively going through all moments that lead me to where I currently was.

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)); ```

2 comments

[ 2.8 ms ] story [ 12.2 ms ] thread
I think the Existence never begin because the Creation keeps creating more creations infinitely before going through startExistence().
It's in a class - it only executes when startExistence(new Creation(0)) get's executed ;)

Ironically HN isn't a great paste code into as the formatting is horrific </3.