- Web Developer Next.js mainly using in back-end Nest.js and express. But I code in Java, Quarkus. Databases, I use MongoDB NOSQL, MySQL ro Postgrees
- Software Enginner Front-End in Tocantins Science and Technology Support Foundation🌐
- Currently working code with TypeScript and JavaScript 😉
- Study Information System in Estadual Tocantins State University 🌔
interface IUser {
name: string;
age: number;
code: string[];
dev: (coffee: string, music: string) => string;
}
class User implements IUser {
public name: string;
public age: number;
public code: string[];
public dev: (coffee: string, music: string) => string;
constructor(name: string, age: number, code: string[], dev: (coffee: string, music: string) => string) {
this.name = name;
this.age = age;
this.code = code;
this.dev = dev;
}
}
const user = new User('Joao', 18, ['JavaScript', 'TypeScript', 'Java', 'Python'], (coffee: string, music: string) => {
return `Coding with ${coffee} and ${music}!`;
});