JSFiddle - React, Tailwind, and code Playground

by ariehg

JavaScript

function Bla(a){
    var $this = this;;
    
    this.a = a;
    
    return function(){
         console.log($this.a);
    }   
}


car = new Bla('a');

car();