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()
{
this.b = function()
{
Z(this.c);
}
this.c = function()
{
alert('hello world!');
}
}
var foo = new A();
foo.b();