I work as a designer in an engineering company. My responsibilities include graphic design, photography, and 3D visualization. I’m now focused on transitioning into web development and gaining a strong understanding of web technologies and UI/UX principles.
I work as a designer in an engineering company. I continue to grow my design expertise and also aim to learn the basics of web development to expand my skill set.
2014-2020
Shukhov Belgorod State Technological University
// Return the sum of all of the positives ones
function positiveSum(arr) {
return arr
.filter(num => num > 0)
.reduce((sum, num) => sum + num, 0);
}