JSFiddle - React, Tailwind, and code Playground

by Sudheer Nunna

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);