JSFiddle - React, Tailwind, and code Playground

by shriek

JavaScript

function hello(){
    var self = this;
    self.msg = "Hey there";
    world.call(self);
}
function world(){
    console.log(self.msg);
}
hello();