JSFiddle - React, Tailwind, and code Playground
JavaScript
function variables(){
this.x = 1;
this.y = 2;
this.setX = function(v){
this.x = v;
}
}
let xx = new variables();
xx.setX(11);
console.log(xx.x);
function variables(){
this.x = 1;
this.y = 2;
this.setX = function(v){
this.x = v;
}
}
let xx = new variables();
xx.setX(11);
console.log(xx.x);