JSFiddle - React, Tailwind, and code Playground

JavaScript

function test() {
    this.hello = 'world';
    console.log(this);
}

test.prototype.hello = function() {
     console.log('something');   
}

new test();