class AboutMe {
constructor(icon, text) {
this.icon = icon;
this.text = text;
}
}
console.log("Hi, I'm Tirta Afandi (a.k.a. Kikuk) ๐");
console.log("I'm a student and web/software developer.");
const aboutMeList = [
new AboutMe("๐ฑ", "Learning advanced backend (NestJS, Next.js, IoT)"),
new AboutMe("๐", "Computer Engineering Student & IT Programmer"),
new AboutMe("๐ง ", "Love clean code & Clear Flow Programming Style"),
new AboutMe("๐ ๏ธ", "Using JavaScript, PHP, C++, and more"),
new AboutMe("๐ค", "Also into public speaking and mentoring coding"),
new AboutMe("๐", "Based in East Java, Indonesia ๐ฎ๐ฉ"),
new AboutMe("โก", "Fun fact: I enjoy breaking things just to fix them better"),
];
aboutMeList.forEach(item => {
console.log(`${item.icon} ${item.text}`);
});
Highlights
- Pro
Popular repositories 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.