JSFiddle - React, Tailwind, and code Playground
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);
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);