JSFiddle - React, Tailwind, and code Playground

by jfriend00

HTML

<script src="http://files.the-friend-family.com/log.js"></script>

JavaScript

var Counter = function(initialValue){
      var value = initialValue;
    
      // product is a JSON object
      Counter.prototype.get = function() {
          return value++;
      }
    
    };
    
    var c1 = new Counter(0);
    var c2 = new Counter(10);
    log(c1.get());    //