JSFiddle - React, Tailwind, and code Playground
JavaScript
function MyFun(name){
this.name=name;
this.methodData = function() {
return this.name;
}
};
const sample = new MyFun("sudheer");
function Teacher(name){
this.name =name;
}
Teacher.prototype = Object.create(MyFun.prototype);