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.call(this);
}

function A()
{
  this.b = function()
  {
    Z.call(this, this.c);
  }

  this.c = function()
  {
    alert('hello world! '+this.txt);
  }
      
  this.txt = "AAA";
}

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