Constructor in Javascript
Ohh 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...
Feb 6, 2020110