About

Avatar

Hi! My name is Valery, and I'm a junior web developer with a passion for modern technologies and clean code. I'm currently learning actively, building practice projects, and exploring HTML, CSS, and JavaScript. I enjoy turning ideas into functional interfaces and strive to grow in this field every day. I'm open to new knowledge, teamwork, and exciting challenges. This website is one of my first steps into web development.

Skills

  • HTML
  • CSS
  • SASS
  • JavaScript
  • Figma

Education

Northern (Arctic) Federal University - Applied Mathematics and Computer Science

Languages

  • Russian
  • English
  • EspaƱol

Projects

Productly

Productly project

Code Example


const generateArticles = (data) => {
    let articles = [];
    data.forEach(article => {
        articles.push(new Article(article));
    });

    return articles;
}