JSFiddle - React, Tailwind, and code Playground

by Lazaro Contreras

JavaScript

var a = function(data){
  this.s = data;
  this.kk = ()=>{
  	console.log(this.s + 1);
  }
}

var b = new a("hola");

var c = new a("hola");


console.log(b / c);