class InformationCenter {
constructor({
name,
workingAt,
location,
hobbies,
motto
}) {
this.name = name;
this.workingAt = workingAt;
this.location = location;
this.hobbies = hobbies;
this.motto = motto;
}
bio() {
console.log(`Hi there! My name is ${this.name}, a passionate coder and lifelong learner.`);
console.log(`I work at ${this.workingAt} and I’m based in ${this.location}.`);
console.log(`I enjoy mastering new technologies and exploring creative solutions.`);
console.log(`My hobbies include:`);
this.hobbies.forEach(hobby => {
console.log(`- ${hobby}`);
});
console.log(`Motto: "${this.motto}"`);
console.log(`Feel free to connect with me and let's collaborate on some exciting projects!`);
}
}
const avi = new InformationCenter({
name: "Avi",
workingAt: "JJ-NET OY",
location: "Vantaa, Finland",
hobbies: [
"Coding",
"Kickboxing",
"BJJ",
"Swimming",
"Archery",
"Exercise"
],
motto: "Keep trying until you succeed."
});
avi.bio();🤝 Any aspiring and experienced developer or designer is welcome to collaborate.
🔍 I am always searching for new opportunity. Feel free to contact me anytime.
I am always open for 'Remote' 💻 work.


