Passionate about the world of development, I specialized in web development, particularly excelling in the JavaScript ecosystem and frameworks like React. My goal is to design innovative solutions to solve concrete challenges, while contributing to projects open source in order to promote collaboration and mutual enrichment within the community.
Programming Languages | Framework and Library | Others |
---|---|---|
Outils et Technologies:
- Git
- VS Code
- Docker
class WhoIam extends Developer
{
constructor()
{
this.name = "tojonirina riantsoa"
this.currentWork = {company: "Hopes"}
}
getAbout()
{
return `
<h1>My name is ${this.name} you can call me ${this.name.slice(0,4)} </h1>
<p> I'm a passionnate frontend developer <p>
`
}
getCities()
{
return 'Antananarivo Madagascar'
}
getAmbitions()
{
return [
'Get Rich 😎😜',
'Become entrepreneur😎',
'become a better programmer'
];
}
}