JSFiddle - React, Tailwind, and code Playground
by Bharat Soni
JavaScript
function amimal(config){
this.name=config.name;
this.eat = config.eat;
}
<!-- animal.prototype.voice(){
return "Woof";
} -->
<!-- var x = new animal({name:"Dog",eat:"veg/non-veg"}); -->
alert(x.name);