Peterson Larson

Typescript Developer

-----

About me

Hello, my name is Peterson, I'm 22 years old and I live in Brazil. I have a great admiration for software development and I like to create applications that somehow increase my technical knowledge. Now I'm looking for new job opportunities.

Skills

Languages:

Frameworks:

Markup Languages:

Unit Tests:

Databases:

Work History

```javascript interface WorkProps { company: String; role: String; start_date: Date; end_date: Date; work_description: String; current: Boolean; } class Work { public experiences: Array; constructor(props) { super(props) this.experiences = []; } setWork() { this.experiences = [ { company: "Imobo", role: "Backend Developer", start_date: "2021-12-20", end_date: "2022-04-20", current: false, work_description: "Code creation and maintenance." }, { company: "Camerite", role: "Frontend Developer", start_date: "2022-02-14", end_date: "current", current: true, work_description: "Creating a mobile pwa application." } ] } } ```