Alexander Galiev

Product Designer

Me

Contacts

About Me

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.

Education

Skills

Sample Code


function positiveSum(arr) {
  return arr
    .filter(num => num > 0)
    .reduce((sum, num) => sum + num, 0);
}