JSFiddle - React, Tailwind, and code Playground

by psteele

JavaScript

Hello = function() {
	this.variable = ko.observable(5);
}

var h1 = new Hello();
h1.variable(10);
alert(h1.variable());

var h2 = new Hello();
alert(h2.variable());