JSFiddle - React, Tailwind, and code Playground

by mendelthecoder

JavaScript

function d(){
        this.b = this.a = function() {console.log("called a!");};
    }

    c = new d();
c.a();
c.b();