JSFiddle - React, Tailwind, and code Playground

by zerkms

JavaScript

var foo = function()
{
    this.bar = function()
    {
        console.log('here');
    }
}

var instance = new foo();
instance.bar();