You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionPersonal(name,age,hobby){this.name=name;this.age=age;this.hobby=hobby;}Personal.prototype.info=function(){return`Hi there, I'm ${this.name}, a ${this.age} year old who loves working with ${this.hobby}!`;}Personal.prototype.interesting=['programming','video games','hanging out with friends'];vargoutam=newPersonal("Goutam",17,"Node.js");console.log(goutam.info());console.log(`My interests include: ${goutam.interesting.join(', ')}.`);