Productly

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.
Northern (Arctic) Federal University - Applied Mathematics and Computer Science
const generateArticles = (data) => {
let articles = [];
data.forEach(article => {
articles.push(new Article(article));
});
return articles;
}