JSFiddle - React, Tailwind, and code Playground

by Pritesh Patel

JavaScript

const a = function(x) {
	this.x = x;
}

const b = function (x,y){
this.y = y;
this.x= a.x;
function getx(){
 this.x;
};
function gety(){

 this.y;
};
}