We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
functionPerson(initialAge){if(initialAge<0){console.log("Age is not valid, setting age to 0.");this.age=0;}else{this.age=initialAge;}this.amIOld=function(){if(this.age<13){console.log("You are young.");}elseif(this.age>=13&&this.age<18){console.log("You are a teenager.");}else{console.log("You are old.");};};this.yearPasses=function(){this.age+=1;};}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Day 4: Class vs. Instance
You are viewing a single comment's thread. Return to all comments →
JavaScript solution: