JSFiddle - React, Tailwind, and code Playground

JavaScript

function f() {     
    this.data = "hello world";     
    this.getData = function() {         
        return this.data;     
    }; 
}

var a = new f();
alert( a.getData() );