function Character(name, age, hobby) {
this.name = name;
this.age = age;
this.hobby = hobby;
}
Character.prototype.bio = function() {
return `Hi there, I'm ${this.name}, a ${this.age}-year-old who loves working with ${this.hobby}!`;
}
Character.prototype.interests = ['programming', 'workout', 'hanging out with friends'];
const sourav = new Character('Sourav', 16, 'Node.js');
console.log(sourav.bio());
console.log(`My interests include: ${sourav.interests.join(', ')}.`);
self taught, hobby dev :)
- Kozhikode, Kerala, India
-
17:59
(UTC +05:30) - https://souravkl11.xyz
Highlights
- Pro
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.