class Developer {
name: string;
title: string;
location: string;
languages: string[];
currentProject: string;
constructor() {
this.name = "Sonu Kumar Pandit";
this.title = "Full Stack Developer";
this.location = "India";
this.languages = ["TypeScript", "JavaScript", "Python"];
this.currentProject = "fantast11";
}
sayHi() {
console.log("Thanks for dropping by!");
}
}
const me = new Developer();
me.sayHi();
Pinned 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.






