Hola! Soy Miguel Castro, bachiller en Ingeniería de Software en la Universidad Nacional de Mayor de San Marcos, and learning programming through personal projects.
class MiguelContact {
name: string;
username: string;
location: string;
linkedn: string;
web: string;
constructor() {
this.name = "Miguel Castro";
this.username = "mijecaap";
this.location = "Lima, Perú";
this.linkedin = "[https://www.linkedin.com/in/mijecaap/](https://www.linkedin.com/in/mijecaap/)";
this.web = "coming soon";
}
toString(): string {
return this.name;
}
}
if (require.main === module) {
const me = new MiguelContact();
console.log(me.toString());
}
|
|
|
Last Edited on: 07/02/2024



