About me

I am an aspiring front-end developer based in Saint-Petersburg. My goal is to learn and improve my fronted programming skills and make interesting projects.

Experience

Had an internship at Graitec Ltd. making layouts for online courses website (august 2022)

My projects:

Code examples

from CodeWars.com:

In this little assignment you are given a string of space separated numbers, and have to return the highest and lowest number.

highAndLow(numbers){ const numArr=numbers.split(" ").map(i=>parseInt(i)); let max=Math.max(...numArr); let min=Math.min(...numArr); return [max,min].join(" "); }

Education

Languages