class AboutMe {
// Singleton instance
public static instance = new AboutMe();
public languages: string[] = ["Greek", "English", "Albanian"];
public currentLocation: string = "Athens, Greece";
public futureGoal: string = "Don't have one, I be good rn";
public toJson(): string {
return JSON.stringify(this);
}
}
// Log output to console
console.log(`${AboutMe.instance.toJson()}`);