📫 How to reach me [email protected]
My web portfolio: https://my-wan.vercel.app/
⚡ Fun fact Co-Founder & COO @ Thaibioscience Co.,Ltd
🟡 Software Developer @ ODDS| 🟡
function sayHi(
name: string = "Suwan Khieanpap",
pronouns: string = "he/him/his",
currentRole: string = "Software Developer",
passions: string[] = ["Software Engineering", "Product Engineering", "Infrastructure as Code"]
): string {
const greeting = `
┌───────────────────────────────────┐
│ Greetings, visitor! │
└───────────────────────────────────┘
Name: ${name}
Pronouns: ${pronouns}
Role: ${currentRole}
Passions: ${passions.join(", ")}
Have a great day! 😊
`;
return greeting;
}
console.log(sayHi());