JSFiddle - React, Tailwind, and code Playground

by Nick Craver

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/dot-luv/jquery-ui.css">

JavaScript

function Z( f )
{
  f();
}

function A()
{
  var self = this;
  this.b = function()
  {
    Z(self.c);
  }

  this.c = function()
  {
    alert('hello world!');
  }
}

var foo = new A();
foo.b();