sz i CV

Anastasiya Avmochkina

Junior frontend developer.
I'm always up for a challenge and now I'm looking for a place where I can continue to grow and learn.

See my works
Anastasiya Avmochkina

How you can contact me

Social links

Who I am

About me

It happened that I got interested in design and web development, so I finished a design course in 2021. Thanks to that I have acquired some knowledge of HTML and CSS, design systems and UX patterns.Now my focus is on front-end development and RS School helps me to learn it. I'm willing to study and become an excellent front-end developer. I'm excited about what I've been working on.

Hard skills

  • HTML 5

  • CSS 3/ Sass

  • JavaScript

  • Nodejs Basic

  • Figma

  • React

Education and courses

  • In progress...

Languages

English
Intermediate
Russian
Native
Belarussian
Fluent

What I do

My works:

My code style

Code example:

              
                function countCats(matrix) {
let cats = 0;
for (let i = 0; i < matrix.length; i++) {
for (let j = 0; j< matrix[i].length; j++) {
if (matrix[i][j] === '^^') {
cats++;
}
}
}
return cats;
}