BKBhavesh Kawadeinbhaveshkawade.hashnode.dev·Feb 6, 2020Constructor in JavascriptOhh yes we can define Constructor in Javascript and its very easy. Constructor is function, which we can defined as follow function Cat(name){ console.log('this',this); this.name=name; this.sleep=function(){ console.log('sleep m...00
BKBhavesh Kawadeinbhaveshkawade.hashnode.dev·Feb 5, 2020Object Oriented JavascriptMind your Object I saw a cat on road, Cat who has name, gender, age, weight and colour etc, who can perform activity eat which represent its behaviour. Here Cat is an Object and name, gender, age, weight represent attributes. Whereas activities (beh...00