class AboutMe {
constructor(icon, text) {
this.icon = icon;
this.text = text;
}
}
console.log("Hi, I'm Muhamad Dzakwan Alfaris ๐");
console.log("I'm a student and newbie web/software developer.");
const aboutMeList = [
new AboutMe("๐ฑ", "Currently learning **Fullstack Web Development**)"),
new AboutMe("๐", "Studying at **Politeknik Negeri Madiun**, TRPL <img src="https://media.giphy.com/media/WUlplcMpOCEmTGBtBW/giphy.gif" width="30">"),
new AboutMe("๐ค", "Always open to **collaboration** to improve my skills"),
];
aboutMeList.forEach(item => {
console.log(`${item.icon} ${item.text}`);
});