In the beginning there was only constructor

id
2512063949328
title
In the beginning there was only constructor
date
12/06/2025
text
“this.inner = this”

class Universe {
    constructor() {
        this.inner = Universe;  // instance holds the class-definition
    }
}

const U = new Universe();

console.log(U.inner === Universe); // true 
tweet_url

    
SHA-256
In the beginning there was only constructor